123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- @font-face {
- font-family: "JetBrain Mono";
- src: url("font/JetBrainsMono-Regular.woff2") format("woff2");
- }
- @font-face {
- font-family: "Covenant";
- src: url("font/Halo-Covenant.ttf") format("truetype");
- }
- .jb-mono {
- font-family: "JetBrain Mono",Menlo,Consolas,Monaco,monospace !important;
- }
- .covenant {
- font-family: "Covenant" !important;
- }
- .hide {
- visibility: hidden;
- }
- .none {
- display: none;
- }
- /* --- Zone --- */
- #header {
- height: 12vh;
- }
- #home {
- height: 88vh;
- position: relative;
- }
- /* --- Download --- */
- #download {
- margin-bottom: 1em;
- text-align: center;
- }
- #download span {
- width: 60%;
- }
- /* --- CMD --- */
- input.cmd-in {
- /* Surcharge les modification de Pico */
- box-shadow: none;
- border-color: inherit;
- padding: 0;
- margin: 0;
- height: inherit;
- }
- #cmd {
- scrollbar-width: thin;
- scrollbar-color: #828282 #101010;
- }
- #cmd {
- width: 100%;
- height: 400px;
- transition: all .15s linear;
- }
-
- #cmd.fullscreen {
- z-index: 9998;
- width: 100%;
- height: 100%;
- top: 0 !important;
- left: 0 !important;
- }
- #cmd::-webkit-scrollbar {
- width: 8px;
- }
-
- #cmd::-webkit-scrollbar-track {
- background: #101010;
- }
-
- #cmd::-webkit-scrollbar-thumb {
- background-color: #828282;
- border-radius: 20px;
- border: 3px solid #828282;
- }
- /* --- OS Window --- */
- .window {
- border: 4px solid #f1f1f1;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- }
- .window-toolbar {
- padding: 10px;
- background: #f1f1f1;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- color: #828282
- }
- .window-toolbar:after {
- content: "";
- display: table;
- clear: both;
- }
- .window-toolbar-left {
- float: left;
- width: 10%;
- }
- .window-toolbar-center {
- float: left;
- width: 75%;
- text-align: center;
- }
- .window-toolbar-right {
- float: left;
- width: 15%;
- text-align: right;
- }
- .window-dot {
- margin-top: 4px;
- height: 12px;
- width: 12px;
- background-color: #bbb;
- border-radius: 50%;
- display: inline-block;
- cursor: pointer;
- }
- #close-fs {
- position: absolute;
- top: 1em;
- right: 1em;
- z-index: 9999;
- background: #FDD800;
- color: black;
- border-color: black;
- font-weight: bold;
- border-radius: 80em;
- height: 2.5em;
- width: 2.5em;
- padding: 0.5em;
- }
- .secret {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translateY(-50%) translateX(-50%);
- font-size: 2em;
- opacity: .2;
- }
- /* --- Pico 8 --- */
- #pico {
- position: relative;
- overflow: hidden;
- height: 68vh;
- width: 100%;
- transition: all .15s linear;
- }
- #pico iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
- }
- #pico.fullscreen {
- z-index: 9998;
- width: 100%;
- height: 100%;
- top: 0 !important;
- left: 0 !important;
- }
|