-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
77 lines (77 loc) · 1.29 KB
/
common.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
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
font-family: Tahoma;
box-sizing: border-box;
}
header {
background: #112233;
padding: 16px;
}
.logo {
width: 240px;
margin: auto;
}
.logo img {
width: 100%;
height: auto;
}
nav {
text-align: center;
margin-top: 16px;
}
nav a {
color: #fff;
text-decoration: none;
margin: 10px;
padding: 2px 8px 4px 8px;
font-size: 18px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-radius: 6px;
}
nav a:hover, .active {
background: #fff;
color: #444;
}
footer {
background: #172528;
padding: 20px;
color: #fff;
}
.copyright {
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.copyright a {
color: #fff;
}
.mail {
text-align: center;
margin-bottom: 16px;
}
.mail a {
text-decoration: none;
color: #fff;
font-family: 'Trebuchet MS', sans-serif;
font-size: 18px;
line-height: 1.6;
}
.mail a:hover {
border-bottom: solid 2px;
}
.comments {
padding: 16px;
width: 75%;
margin: auto;
}
@media (max-width: 920px) {
.comments {
width: 96%;
}
.mail a {
font-size: 16px;
}
}