-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
73 lines (63 loc) · 1.02 KB
/
main.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
html, body {
background-color: #6A4427;
color: #25120C;
font-family: 'Oswald', sans-serif;
font-size: 100%;
margin: 0;
padding: 0;
text-align: center;
}
*, *::before, *::after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#wrapper {
display: inline-block;
margin: auto;
}
a, a:visited {
color: #ffffff;
text-decoration: none;
}
img {
max-height: 70vh;
max-width: 50vw;
}
ins {
margin: auto;
}
h1 {
background-color: #25120C;
border: 5px solid #25120C;
color: #ffffff;
display: inline-block;
font-size: 1.7em;
margin: 8.5vh auto 2vh auto;
width: 50%;
}
a h1 {
background-color: #54351D;
}
#jump {
background-color: #6A4427;
border-bottom: 2px solid #25120C;
height: 8vh;
left: 0;
line-height: 8vh;
margin: auto;
position: fixed;
right: 0;
top: 0;
vertical-align: middle;
z-index: 100;
}
#jump a {
display: inline-block;
margin: auto 5px;
}
h2 {
font-size: 1.2em;
margin: -8vh auto 0 auto;
padding-top: 8vh;
}