This repository has been archived by the owner on Dec 1, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (80 loc) · 1.43 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
body {
display: flex;
flex-flow: column;
align-items: stretch;
min-height: 100vh;
margin: 0;
padding: 0;
font-family: 'Overpass', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
}
header {
margin: 0;
padding: 12px;
background: #1a805d;
color: #fff;
}
h1 {
margin: 0;
padding: 0;
font-size: 24px;
font-weight: 100;
}
main {
flex-grow: 1;
padding: 12px 0;
}
p {
margin: 0;
padding: 0 12px;
}
blockquote {
position: relative;
margin: 12px 0 0;
padding: 12px 24px;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #1a805d;
white-space: pre-line;
}
blockquote:before {
position: absolute;
right: 0;
top: 0;
padding: 6px;
border-radius: 0 0 0 6px;
background: #1a805d;
color: #fff;
line-height: 1;
}
#license:before {
content: "License";
}
#attribution:before {
content: "Attribution";
}
.buttons {
padding: 24px 0 12px;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #1a805d;
text-align: center;
}
button {
-webkit-appearance: none;
padding: 12px 24px;
border: none;
border-radius: 6px;
background: #1a805d;
color: #fff;
cursor: pointer;
}
footer {
padding: 12px 0;
background: #1a805d;
color: #fff;
text-align: center;
font-size: 10px;
}