-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (93 loc) · 1.66 KB
/
style.css
File metadata and controls
110 lines (93 loc) · 1.66 KB
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
105
106
107
108
109
110
body {
font-family: helvetica, arial, verdana, sans-serif;
font-size: 1.6rem;
}
a {
text-decoration: none;
}
p {
line-height: 1.75;
}
header {
background: black url('redstar.png') no-repeat center;
background-size: cover;
border-bottom: 25px solid #616161;
font-size: 2.25rem;
min-height: 100vh;
}
header h1 {
color: #fafafa;
line-height: 2;
margin: 0;
padding: 4%;
text-align: center;
text-shadow: 0 3px 6px rgba(0,0,0,0.16),
0 3px 6px rgba(0,0,0,0.23);
}
header h1 img {
display: inline-block;
margin-right: 0.5ch;
width: 3ch;
vertical-align: middle;
}
header p {
color: #fafafa;
margin: 5% auto;
max-width: 40ch;
padding-bottom: 4ch;
text-align: center;
text-shadow: 0 3px 6px rgba(0,0,0,0.16),
0 3px 6px rgba(0,0,0,0.23);
}
header nav {
text-align: center;
}
header nav a {
background: #3c3a51;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12),
0 1px 2px rgba(0,0,0,0.24);
color: #fafafa;
display: inline-block;
line-height: 1;
margin: 2ch;
min-width: 6ch;
padding: 1ch 1.5ch 1.3ch 1.5ch;
}
header nav a:hover {
background: #3a3678;
box-shadow: 0 3px 6px rgba(0,0,0,0.16),
0 3px 6px rgba(0,0,0,0.23);
}
main {
background: #fafafa;
padding: 5%;
padding-bottom: 10%;
}
main a {
border-bottom: 0.2ch solid;
color: black;
}
main a:hover {
color: #c62828;
}
main article {
line-height: 1.5;
margin: 0 auto;
max-width: 64ch;
}
main article h2 {
margin-top: 10%;
}
footer {
background: #212121;
padding: 2ch;
text-align: center;
}
footer a {
color: #888;
text-decoration: none;
}
footer a:hover {
color: #eee;
}