blob: a381261462c3f527e0f2545da05d852b7e455694 (
plain)
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
|
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
overflow-x: hidden;
}
html {
font-family: 'IM Fell English SC', serif;
font-size: 15px;
line-height: 1.6;
}
body {
height: 100%;
text-decoration-skip-ink: auto;
color: #2f2f2f;
padding-top: 10px;
background-color: #fff;
/* background-size: cover;
background-position: center;
background-repeat: repeat-y;
background-image: url("../img/bg.jpg"); */
}
.container {
position: relative;
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
@media (min-width: 400px) {
.container {
width: 85%;
padding: 0; }
}
@media (min-width: 550px) {
.container {
width: 80%;
}
.container:after,
.row:after,
.u-cf {
content: "";
display: table;
clear: both;
}
#navlist > .active > a {
color: #000;
text-decoration: overline;
}
#navlist > .active > a {
color: #000;
text-decoration: overline;
}
#navlist li {
display: inline;
list-style-type: none;
padding-right: 20px;
}
ol, ul {
padding-left: 0;
margin-top: 0;
}
|