menu.html


SUBMITTED BY: Lucoz18

DATE: Feb. 15, 2024, 1:18 a.m.

UPDATED: Feb. 15, 2024, 1:50 a.m.

FORMAT: Text only

SIZE: 2.5 kB

HITS: 634

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6. <!-- Compiled and minified CSS -->
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
  8. <!-- Compiled and minified JavaScript -->
  9. <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
  10. <link rel="stylesheet"
  11. href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
  12. </head>
  13. <body>
  14. <div class="screen" style="z-index: 100">
  15. <header>
  16. <p class="title">Version: 1.0.0</p>
  17. <i class="fa-solid fa-xmark" style="cursor:pointer; color:#b5b5b5; font-size:30px;"></i>
  18. </header>
  19. <div style="display:flex; flex-direction: row; height:calc(100% - 50.5px); width:100vw; position:relative;">
  20. <div class="main" style="overflow-y: scroll; height:100%; width:70%; position:relative;">
  21. </div>
  22. <div class="head-body" style="height:100%; width:30%; position:relative; background-color: #f0c032;">
  23. <div class="heads" style="height:50%; width:100%; display: flex; flex-wrap: wrap; padding: 8px 0px; overflow-y: scroll; border-bottom: 1px solid #363636">
  24. </div>
  25. <div id="bodys" style="height:50%; width:100%; display: flex; flex-wrap: wrap; padding: 8px 0px; overflow-y: scroll">
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </body>
  31. </html>
  32. <style>
  33. *{
  34. padding:0;
  35. margin:0;
  36. box-sizing: border-box;
  37. }
  38. .screen{
  39. background-color: #141414;
  40. width:100vw;
  41. height:100vh;
  42. }
  43. header{
  44. width:100vw;
  45. padding: 5px 20px;
  46. background-color: #050505;
  47. display:flex;
  48. justify-content: space-between;
  49. flex-direction: row;
  50. align-items: center;
  51. text-align: center;
  52. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  53. }
  54. .title{
  55. color: #b5b5b5;
  56. font-size:27px;
  57. }
  58. ::-webkit-scrollbar {
  59. width: 10px;
  60. }
  61. /* Track */
  62. ::-webkit-scrollbar-track {
  63. /*box-shadow: inset 0 0 5px grey;
  64. border-radius: 10px;*/
  65. background-color: #262626;
  66. }
  67. /* Handle */
  68. ::-webkit-scrollbar-thumb {
  69. background: #000;
  70. border-radius: 10px;
  71. }
  72. /* Handle on hover */
  73. ::-webkit-scrollbar-thumb:hover {
  74. background: #000;
  75. }
  76. </style>

comments powered by Disqus