1 | @import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,400i,700,700i&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 | text-rendering: optimizeLegibility; |
6 | color: #ffffff; |
7 | background-color: #353535; |
8 | padding: 0; |
9 | margin: 0; |
10 | line-height: 1.45; |
11 | font-size: 1em; |
12 | } |
13 | a { |
14 | color: #56c0f4ff; |
15 | text-decoration: none; |
16 | border-bottom: 2px solid #56c0f450; |
17 | } |
18 | a:hover { |
19 | border-bottom-color: #56c0f4dd; |
20 | } |
21 | center { |
22 | padding: 2em 1em; |
23 | background-color: #252525; |
24 | } |
25 | #container { |
26 | max-width: 700px; |
27 | padding: 2em 1em; |
28 | margin: 0 auto; |
29 | margin-bottom: 4em; |
30 | } |
31 | .divider { |
32 | max-width: 8em; |
33 | margin: 2em auto; |
34 | border-bottom: 4px dotted #ffffff; |
35 | } |
36 | .repository { |
37 | border-bottom: 1px solid #ffffff40; |
38 | margin-top: 2em; |
39 | padding-bottom: 1em; |
40 | } |
41 | .repository>.name { |
42 | text-decoration: underline; |
43 | margin-top: 1em; |
44 | margin-bottom: 0; |
45 | } |
46 | .repository .button { |
47 | font-weight: bold; |
48 | } |
49 | .date.category { |
50 | margin-bottom: 0.5em !important; |
51 | margin-top: 2em; |
52 | } |
53 | .commit { |
54 | margin-bottom: 1em; |
55 | display: block; |
56 | } |
57 | .commit.select { |
58 | padding: 8px; |
59 | padding-left: 10px; |
60 | border-radius: 0 8px 8px 0; |
61 | border-left: 4px solid #56c0f490; |
62 | background-color: #00000020; |
63 | } |
64 | .commit.select:hover { |
65 | border-left-color: #56c0f4ee; |
66 | cursor: pointer; |
67 | } |
68 | .commit>.hash { |
69 | font-family: 'Fira Sans', monospace; |
70 | font-size: 0.8em; |
71 | } |
72 | .commit>.hash>.date { |
73 | margin-left: 10px; |
74 | color: #f0f0f0dd; |
75 | } |
76 | .commit>.subject { |
77 | margin: 0; |
78 | } |
79 | .commit>.author { |
80 | margin: 0; |
81 | } |
82 | .commit>.author>.email { |
83 | margin-left: 10px; |
84 | color: #f0f0f0cc; |
85 | } |
86 | .commit>.author>.email:before{ |
87 | content: "<" |
88 | } |
89 | .commit>.author>.email:after{ |
90 | content: ">" |
91 | } |
92 | .commit>.message { |
93 | font-family: 'Fira Mono', monospace; |
94 | font-size: 0.8em; |
95 | white-space: pre-wrap; |
96 | margin-bottom: 0; |
97 | padding: 0; |
98 | } |
99 |
|