jsos

college code for operating system fundamentals in js

git clone https://9o.is/git/jsos.git

julios.css

(965B)


      1 /* julios.css */
      2 
      3 body {
      4   font-family: 'Open Baskerville 0.0.53'; 
      5   font-weight: normal; 
      6   font-style: normal;
      7   font-size: 10pt;
      8   background-image: -moz-radial-gradient(50% 10%, ellipse, #ffffff 0%, #ececec 1340px);
      9   background-image: -webkit-radial-gradient(50% 10%, ellipse, #ffffff 0%, #ececec 1340px);
     10   background-image: -o-radial-gradient(50% 10%, ellipse, #ffffff 0%, #ececec 1340px);
     11   background-image: -ms-radial-gradient(50% 10%, ellipse, #ffffff 0%, #ececec 1340px);
     12 }
     13 
     14 #display {
     15   background-color: #fff; 
     16   cursor: default;
     17   border: 0.1em solid black;
     18   outline: none;
     19   font-size: 10pt;
     20 }
     21 
     22 .diskInfo {
     23   font-size: 20px;
     24 }
     25 
     26 #tabContainer {
     27   margin-top: 20px;
     28 }
     29 
     30 .tabpage {
     31   overflow-y:auto; 
     32   height:570px;
     33 }
     34 
     35 .tabpage > textarea {
     36   height:550px;
     37   width: 98%;
     38 }
     39 
     40 #buttons {
     41   text-align: center;
     42   margin: 20px 0;
     43 }
     44 
     45 .footer {
     46   padding: 30px 0;
     47   font-size: 8pt;
     48   text-align: center;
     49 }