-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (98 loc) · 1.68 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
* {
font-family: "Tahoma", sans-serif;
font-size: 17px;
margin: 0;
padding: 0;
text-align: center;
}
body {
background-color: rgba(176, 127, 27, .1);
line-height: 2;
margin: 30px 0;
}
body::before,
h1::before {
border-top: 1px solid rgb(176, 127, 27);
content: '';
display: block;
}
body::before {
position: relative;
top: 60px;
z-index: -1;
}
h1,
h2 {
color: rgb(176, 127, 27);
}
h1 {
background-color: #fff;
border: 1px solid rgb(176, 127, 27);
border-width: 1px;
display: table;
font-size: 40px;
font-weight: 100;
letter-spacing: 4px;
line-height: 1.4;
margin: 0 auto 20px;
padding: 30px 50px;
text-align: center;
}
h2 {
border-bottom: 1px solid #00000070;
font-size: 24px;
font-weight: 100;
margin-bottom: 15px;
padding: 5px;
}
.noBorder {
border: 0;
padding-bottom: 0;
padding-top: 0;
}
ul,
ol,
p {
margin-bottom: 15px;
padding: 0 10px;
}
img {
border: 1px solid #00000070;
height: auto;
margin-bottom: 20px;
max-width: calc(100vw - 10px);
padding: 5px;
}
li {
margin: 0 20px;
text-align: left;
}
.menu {
border-top: 1px solid #00000070;
padding: 0;
}
.menu li {
list-style: none;
margin: 0;
}
.menu a {
background-color: rgba(176, 127, 27, .1) ;
border-bottom: 1px solid #00000070;
color: rgb(176, 127, 27);
display: block;
letter-spacing: 2px;
padding: 10px;
text-decoration: none;
}
.menu a:hover,
.menu--active a {
background-color: rgba(176, 127, 27) ;
color: #fff;
}
.container {
display: table;
margin: 0 auto;
}
.container-last {
margin-bottom: 20px;
}