style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. @font-face {
  2. font-family: "JetBrain Mono";
  3. src: url("font/JetBrainsMono-Regular.woff2") format("woff2");
  4. }
  5. @font-face {
  6. font-family: "Covenant";
  7. src: url("font/Halo-Covenant.ttf") format("truetype");
  8. }
  9. .jb-mono {
  10. font-family: "JetBrain Mono",Menlo,Consolas,Monaco,monospace !important;
  11. }
  12. .covenant {
  13. font-family: "Covenant" !important;
  14. }
  15. .hide {
  16. visibility: hidden;
  17. }
  18. .none {
  19. display: none;
  20. }
  21. /* --- CMD --- */
  22. input.cmd-in {
  23. /* Surcharge les modification de Pico */
  24. box-shadow: none;
  25. border-color: inherit;
  26. padding: 0;
  27. margin: 0;
  28. height: inherit;
  29. }
  30. #cmd {
  31. scrollbar-width: thin;
  32. scrollbar-color: #828282 #101010;
  33. }
  34. #cmd {
  35. width: 100%;
  36. height: 400px;
  37. transition: all .15s linear;
  38. }
  39. #cmd.fullscreen {
  40. z-index: 9998;
  41. width: 100%;
  42. height: 100%;
  43. top: 0 !important;
  44. left: 0 !important;
  45. }
  46. #cmd::-webkit-scrollbar {
  47. width: 8px;
  48. }
  49. #cmd::-webkit-scrollbar-track {
  50. background: #101010;
  51. }
  52. #cmd::-webkit-scrollbar-thumb {
  53. background-color: #828282;
  54. border-radius: 20px;
  55. border: 3px solid #828282;
  56. }
  57. /* --- OS Window --- */
  58. .window {
  59. border: 4px solid #f1f1f1;
  60. border-top-left-radius: 4px;
  61. border-top-right-radius: 4px;
  62. }
  63. .window-toolbar {
  64. padding: 10px;
  65. background: #f1f1f1;
  66. border-top-left-radius: 4px;
  67. border-top-right-radius: 4px;
  68. color: #828282
  69. }
  70. .window-toolbar:after {
  71. content: "";
  72. display: table;
  73. clear: both;
  74. }
  75. .window-toolbar-left {
  76. float: left;
  77. width: 10%;
  78. font-size: .7em;
  79. }
  80. .window-toolbar-center {
  81. float: left;
  82. width: 75%;
  83. text-align: center;
  84. }
  85. .window-toolbar-right {
  86. float: left;
  87. width: 15%;
  88. text-align: right;
  89. }
  90. .window-dot {
  91. margin-top: 4px;
  92. height: 12px;
  93. width: 12px;
  94. background-color: #bbb;
  95. border-radius: 50%;
  96. display: inline-block;
  97. cursor: pointer;
  98. }
  99. #close-fs {
  100. position: absolute;
  101. top: 1em;
  102. right: 1em;
  103. z-index: 9999;
  104. background: #FDD800;
  105. color: black;
  106. font-weight: bold;
  107. border-radius: 80em;
  108. height: 2.5em;
  109. width: 2.5em;
  110. padding: 0.5em;
  111. }
  112. /* --- Pico 8 --- */
  113. #pico {
  114. position: relative;
  115. overflow: hidden;
  116. height: 68vh;
  117. width: 100%;
  118. transition: all .15s linear;
  119. }
  120. #pico iframe {
  121. position: absolute;
  122. top: 0;
  123. left: 0;
  124. width: 100%;
  125. height: 100%;
  126. border: 0;
  127. }
  128. #pico.fullscreen {
  129. z-index: 9998;
  130. width: 100%;
  131. height: 100%;
  132. top: 0 !important;
  133. left: 0 !important;
  134. }