| 1 | @import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,400i,500&display=swap'); |
| 2 | @import url('https://fonts.googleapis.com/css?family=Fira+Mono&display=swap'); |
| 3 | body { |
| 4 | font-family: 'Fira Sans', sans-serif; |
| 5 | color: #f0f0f0; |
| 6 | background-color: #353535; |
| 7 | padding: 0; |
| 8 | margin: 0; |
| 9 | line-height: 1.45; |
| 10 | font-size: 1.05em; |
| 11 | } |
| 12 | a { |
| 13 | color: #f0f0f0; |
| 14 | } |
| 15 | center { |
| 16 | padding: 2em; |
| 17 | background-color: #252525; |
| 18 | } |
| 19 | #container { |
| 20 | max-width: 700px; |
| 21 | padding: 2em; |
| 22 | margin: 0 auto; |
| 23 | } |
| 24 | #container>h2 { |
| 25 | margin-bottom: 0; |
| 26 | } |
| 27 | ul { |
| 28 | list-style: none; |
| 29 | padding-left: 1em; |
| 30 | } |
| 31 | .repository { |
| 32 | border-bottom: 1px solid #575757; |
| 33 | margin-bottom: 1em; |
| 34 | } |
| 35 | .repository:last-of-type { |
| 36 | border: none; |
| 37 | } |
| 38 | .more { |
| 39 | text-align: center; |
| 40 | display: block; |
| 41 | } |
| 42 | .commit { |
| 43 | padding: 1em; |
| 44 | margin-bottom: 1em; |
| 45 | border-radius: 0.5em; |
| 46 | border: 1px solid #757575; |
| 47 | } |
| 48 | .commit:hover { |
| 49 | border: 1px solid #959595; |
| 50 | cursor: pointer; |
| 51 | } |
| 52 | .commit>.hash { |
| 53 | font-family: 'Fira Sans', monospace; |
| 54 | font-size: 0.8em; |
| 55 | } |
| 56 | .commit>.subject { |
| 57 | margin: 0; |
| 58 | } |
| 59 | .commit>.author { |
| 60 | margin: 0; |
| 61 | } |
| 62 | .commit>.author>.email { |
| 63 | margin-left: 10px; |
| 64 | } |
| 65 | .commit>.author>.email:before{ |
| 66 | content: "<" |
| 67 | } |
| 68 | .commit>.author>.email:after{ |
| 69 | content: ">" |
| 70 | } |
| 71 | .commit>.message { |
| 72 | font-family: 'Fira Mono', monospace; |
| 73 | font-size: 0.8em; |
| 74 | margin-bottom: 0; |
| 75 | padding: 0; |
| 76 | overflow: auto; |
| 77 | } |
| 78 |
|