CoolFace
Apppublic

livecodebench/leaderboard

sourceHugging Facemitupdated 2y agoView on Hugging Face
42likes
streamlit.html49 linesDownload Raw Back to root
1<html>2  <head>3    <title>Your app name</title>4    <style type="text/css">5      html {6        overflow: auto;7      }8      html,9      body,10      div,11      iframe {12        margin: 0px;13        padding: 0px;14        height: 100%;15        border: none;16      }17      iframe {18        display: block;19        width: 100%;20        border: none;21        overflow-y: auto;22        overflow-x: hidden;23      }24    </style>25    <script type="text/javascript" defer>26      const element = document.getElementsByClassName(27        "embeddedAppMetaInfoBar_container__DxxL1"28      )[0]29      element.remove()30    </script>31  </head>32  <body>33    <iframe34      src="35https://livecodebench-retreat.streamlit.app/36?embed=true37&embed_options=show_toolbar38&embed_options=show_padding39&embed_options=show_colored_line40&embed_options=light_theme41&embed_options=show_footer42"43    >44      frameborder="0" marginheight="0" marginwidth="0" width="100%"45      height="100%" scrolling="auto" >46    </iframe>47  </body>48</html>49