-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (97 loc) · 1.55 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
105
106
107
108
109
110
111
112
113
114
115
116
body {
margin: 8% auto 0;
padding: 0;
max-width: 560px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: 16px;
color: #000;
line-height: 1.42857143;
background-color: #1c1f24;
}
p {
margin: 0 0 10px;
}
.header {
min-height: 62px;
border-bottom: 1px solid #2f3235;
box-sizing: border-box;
font: 400 16px/1 Courier, monospace;
}
.heading {
margin: 0;
color: #fff;
font-size: 24px;
font-weight: 400;
line-height: 1.7;
}
.error-code {
color: #4e535a;
}
.logo-box {
display: block;
float: left;
margin-left: -76px;
padding: 15px;
width: 32px;
height: 32px;
background-color: #f90;
}
.logo-box:hover,
.logo-box:active {
background-color: #ffad33;
}
.logo {
display: inline-block;
vertical-align: top;
fill: #fff;
}
.content {
margin: 20px 0;
color: #7f868f;
}
.title {
margin: 0 0 10px;
color: #fff;
}
.footer {
margin: 10px -10px 0;
padding: 0;
font-size: 14px;
list-style: none;
color: #4e535a;
}
.footer li {
display: inline-block;
}
.footer li:not(:last-child)::after {
content: '·';
}
.footer a {
margin: 0 10px;
text-decoration: none;
color: inherit;
}
.footer a:hover,
.footer a:focus {
text-decoration: underline;
}
@media screen and (max-width: 768px) {
body {
margin: 8% 20px 0;
}
.logo-box {
float: none;
margin: 0 0 10px;
}
.heading {
margin: 4px 0 10px;
line-height: 1.3;
}
.footer li::after {
display: none;
}
.footer li {
display: block;
margin: 8px 0;
}
}