-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·104 lines (88 loc) · 1.54 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#background-effect {
z-index: -1;
width: 100%;
height: 100%;
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
}
@font-face {
font-family: 'juice_regularregular';
src: url('JUICE_Regular-webfont.woff2') format('woff');
font-weight: normal;
font-style: normal;
}
body {
background-color: #333;
font-family: 'juice_regularregular';
padding-top: 2rem;
padding-bottom: 2rem;
font-size: 115%;
color: #bbb;
}
body:after {
pointer-events: none;
position: fixed;
width: 100%;
height: 100px;
top: 0;
left: 0;
display: block;
content: "";
border-top: solid 5px #f5993d;
}
h1, h2, h3 {
font-family: 'juice_regularregular';
font-weight: bold;
}
h2, h3 {
color: #c2660a;
letter-spacing: 1px;
font-variant: small-caps;
}
.row {
margin-top: 2rem;
padding-top: 2rem;
}
.row:first-child + .row {
margin-top: -3px;
}
.row:not(:first-child):before {
margin-top: -2rem;
width: 100%;
content: '';
left: 0;
right: 0;
position: absolute;
border-top: solid 3px rgba(245, 153, 61, .1);
}
.row > div > :last-child {
margin-bottom: 0;
}
hr {
margin-top: 1.5rem;
border: none;
border-top: solid 3px rgba(245, 153, 61, .1);
}
h3 {
margin-top: 0;
}
h4 {
font-weight: bold;
margin: 2rem 0 1rem 0;
padding: 0;
}
h4:first-child {
margin-top: 0;
}
ul {
list-style: square;
}
.align-right {
text-align: right;
}
img.avatar {
border-bottom: solid 3px rgba(245, 153, 61, .5);
}