OLD | NEW |
(Empty) | |
| 1 @font-face { |
| 2 font-family: press_start; |
| 3 src: local(press_start), url('/third_party/PressStart2P.ttf') format('opentype
'); |
| 4 } |
| 5 |
| 6 body { |
| 7 font-family: press_start; |
| 8 background: black; |
| 9 color: #888888; |
| 10 font-size: 10px; |
| 11 } |
| 12 |
| 13 h1 { |
| 14 font-family: press_start; |
| 15 text-align: center; |
| 16 font-size: 80px; |
| 17 color: white; |
| 18 } |
| 19 |
| 20 table.issue { |
| 21 table-layout: fixed; |
| 22 width: 100%; |
| 23 letter-spacing: 2px; |
| 24 font-size: 20px; |
| 25 margin-top: 10px; |
| 26 margin-left: 10%; |
| 27 margin-right: 10%; |
| 28 margin-bottom: 20px; |
| 29 border-spacing: 10px; |
| 30 } |
| 31 |
| 32 table.issue > tbody > tr:first-child { |
| 33 color: yellow; |
| 34 } |
| 35 |
| 36 table.issue > tbody > tr:nth-child(2) { |
| 37 color: white; |
| 38 } |
| 39 |
| 40 table.issue > tbody > tr:nth-child(3) { |
| 41 color: orange; |
| 42 } |
| 43 |
| 44 table.issue > tbody > tr:nth-child(4) { |
| 45 color: #888888; |
| 46 } |
| 47 |
| 48 table.issue > tbody > tr:nth-child(5) { |
| 49 color: #888888; |
| 50 } |
| 51 |
| 52 table.issue > tbody > tr:nth-child(6) { |
| 53 color: #888888; |
| 54 } |
| 55 |
| 56 table.issue > tbody > tr:nth-child(7) { |
| 57 color: #888888; |
| 58 } |
| 59 |
| 60 table.issue > tbody > tr:nth-child(8) { |
| 61 color: #888888; |
| 62 } |
| 63 |
| 64 table.issue > tbody > tr:nth-child(9) { |
| 65 color: #888888; |
| 66 } |
| 67 |
| 68 table.issue > tbody > tr:nth-child(10) { |
| 69 color: #888888; |
| 70 } |
| 71 |
| 72 table.issue > tbody > tr { |
| 73 color: #555555; |
| 74 } |
| 75 |
| 76 table.legend { |
| 77 /*position: relative;*/ |
| 78 /*float: center; |
| 79 text-align: center; |
| 80 table-layout: fixed; |
| 81 vertical-align: baseline;*/ |
| 82 width: 100%; |
| 83 color: white; |
| 84 letter-spacing: 2px; |
| 85 line-height: 150%; |
| 86 } |
| 87 |
| 88 table.legend > tbody td:first-child { |
| 89 width: 20%; |
| 90 } |
| 91 |
| 92 table.legend > tbody td:last-child { |
| 93 width: 20%; |
| 94 } |
OLD | NEW |