| OLD | NEW |
| 1 @import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans); | 1 @import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans); |
| 2 | 2 |
| 3 body { | 3 body { |
| 4 height: 100%; | 4 height: 100%; |
| 5 font-family: 'Quattrocento Sans', sans-serif; | 5 font-family: 'Quattrocento Sans', sans-serif; |
| 6 } | 6 } |
| 7 | 7 |
| 8 .nav { | 8 .nav { |
| 9 padding: 15px 0px 0px 0px; | 9 padding: 15px 0px 0px 0px; |
| 10 background: #333; | 10 background: #333; |
| 11 } | 11 } |
| 12 | 12 |
| 13 .nav li { | 13 .nav li { |
| 14 display: inline; | 14 display: inline; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .nav a { | 17 .nav a { |
| 18 color: #A3A3A3; | 18 color: #A3A3A3; |
| 19 font-size: 18px; | 19 font-size: 18px; |
| 20 padding: 14px 10px; | 20 padding: 14px 10px; |
| 21 text-transform: uppercase; | 21 text-transform: uppercase; |
| 22 } | 22 } |
| 23 | 23 |
| 24 .gen_time { | 24 .nav .gen_time { |
| 25 color: #A3A3A3; | 25 color: #A3A3A3; |
| 26 } | 26 } |
| 27 | 27 |
| 28 .stats { |
| 29 margin-top: 90px; |
| 30 padding-top: 5px; |
| 31 border-top: 1px solid #ccc; |
| 32 border-bottom: 1px solid #ccc; |
| 33 color: #A3A3A3; |
| 34 } |
| 35 |
| 36 .stats .numbers { |
| 37 text-align: center; |
| 38 color: #000; |
| 39 } |
| 40 |
| 41 .stats h3 { |
| 42 font-weight: bold; |
| 43 } |
| 44 |
| 28 .data_table { | 45 .data_table { |
| 29 margin-top: 30px; | 46 margin-top: 40px; |
| 30 } | 47 } |
| 31 | 48 |
| 32 .data_item { | 49 .data_item { |
| 33 text-align: center; | 50 text-align: center; |
| 34 } | 51 } |
| 35 | 52 |
| 36 th { | 53 th { |
| 37 text-align: center; | 54 text-align: center; |
| 38 } | 55 } |
| 39 | 56 |
| 40 tbody { | 57 tbody { |
| 41 height: 120px; | 58 height: 120px; |
| 42 overflow-y: auto; | 59 overflow-y: auto; |
| 43 } | 60 } |
| 44 | 61 |
| 45 .git_hash { | 62 .git_hash { |
| 46 width: 40%; | 63 width: 40%; |
| 47 } | 64 } |
| 48 | 65 |
| 49 .rietveld_url { | 66 .rietveld_url { |
| 50 width: 40%; | 67 width: 40%; |
| 51 } | 68 } |
| 52 | 69 |
| 53 .request_timestamp { | 70 .request_timestamp { |
| 54 width: 20%; | 71 width: 20%; |
| 55 } | 72 } |
| 56 .stats { | |
| 57 text-align: center; | |
| 58 margin-top: 70px; | |
| 59 } | |
| 60 | |
| 61 .stats h3 { | |
| 62 font-weight: bold; | |
| 63 } | |
| OLD | NEW |