-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (84 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
html, body {
margin: 0;
padding: 0;
height: 100%;
}
body {
font-family: Junction, sans-serif;
display: flex;
flex-flow: column;
background-color: #222;
color: white;
}
.hero {
background-image: url("https://i.imgur.com/WoEVJxv.jpg");
background-size: cover;
color: white;
text-shadow: 6px 4px 15px rgba(0,0,0,0.5);
padding-top: 96px;
}
.content {
max-width: 800px;
margin: 0 auto;
}
.hero .logo {
filter: drop-shadow(6px 4px 15px rgba(0,0,0,0.5));
}
h1, h2, h3 {
font-family: League Spartan, sans-serif;
font-weight: bold;
}
.hero h1 {
font-size: 136px;
margin: .2em 0 0 0;
}
.hero h2 {
font-size: 42px;
margin: 0 0 1em;
}
.explainer {
text-align: center;
background-color: #46e;
color: white;
font-size: 32px;
}
.github-fork-ribbon:before {
background-color: #ca3;
}
.button {
font-family: League Spartan, sans-serif;
font-weight: bold;
font-size: 36pt;
background-color: #ca3;
border: none;
border-radius: 4px;
display: flex;
flex-flow: row;
align-items: center;
justify-content: center;
text-decoration: none;
padding: 16px;
margin-bottom: 32px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
}
.explainer a:link, .explainer a:visited,
.hero a:link, .hero a:visited,
header a:link, header a:visited,
footer a:link, footer a:visited {
color: white;
}
.ordinary {
color: #111;
background-color: #eee;
}
.ordinary h2 {
text-align: center;
}
header, footer {
height: 48px;
flex: none;
display: flex;
flex-flow: row;
justify-content: center;
align-items: center;
}