url-tetris

tetris inside the browser address bar
git clone https://tongong.net/git/url-tetris.git
Log | Files | Refs | README

styles.css (1245B)


      1 /* fira-code-600 - latin */
      2 @font-face {
      3     font-family: "Fira Code";
      4     font-style: normal;
      5     font-weight: 600;
      6     src: local(""), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("../fonts/fira-code-v8-latin-600.woff2") format("woff2"),
      7         /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ url("../fonts/fira-code-v8-latin-600.woff") format("woff");
      8 }
      9 
     10 body {
     11     font-family: "Fira Code", monospace;
     12 }
     13 
     14 #icon {
     15     height: 60px;
     16     display: block;
     17     margin-left: auto;
     18     margin-right: auto;
     19     margin-top: 50px;
     20 }
     21 
     22 #header {
     23     text-align: center;
     24     font-size: 40px;
     25     margin-top: 10px;
     26 }
     27 
     28 #divider {
     29     color: black;
     30     background-color: black;
     31     height: 2px;
     32     width: 1000px;
     33     max-width: 100%;
     34 }
     35 
     36 #content {
     37     width: 800px;
     38     margin: 0 auto;
     39     max-width: 100%;
     40     text-align: center;
     41 }
     42 
     43 table {
     44     margin: 0 auto;
     45 }
     46 
     47 td {
     48     padding: 5px 20px;
     49 }
     50 
     51 h2 {
     52     margin-top: 80px;
     53     font-size: 30px;
     54 }
     55 
     56 footer {
     57     margin: 0 auto;
     58     margin-top: 80px;
     59     text-align: center;
     60 }
     61 
     62 a {
     63     color: #f08700;
     64 }
     65 
     66 #mobileWarn {
     67     margin: 30px auto;
     68     padding: 30px;
     69     border: 3px solid red;
     70     border-radius: 20px;
     71     background-color: #ffaaaa;
     72     display: none;
     73 }
     74 
     75 #mobileWarn h2 {
     76     margin-top: 30px;
     77 }