-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (73 loc) · 1.31 KB
/
styles.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
body {
background-image: url('bg.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
background-attachment: fixed;
height: 97.5vh;
margin: 0;
padding: 0;
}
.fullwidth {
width: 98%;
margin: 3px;
margin-left: auto;
margin-right: auto;
background-color: rgba(255,255,255,.5);
font-family: 'Alegreya Sans', sans-serif;
font-size: 3vh;
}
.navbar {
width: 100%;
margin-left: auto;
margin-right: auto;
background-color: black;
color: #fff;
font-family: 'Alegreya Sans', sans-serif;
font-size: 3vh;
height: 50px;
position: fixed;
bottom: 0px;
padding-left: 5px;
padding-top: 2px;
vertical-align: middle;
line-height: 50px;
}
.me {
font-size: 3.5vh;
font-weight: bold;
}
.divider {
margin-left: 3px;
margin-right: 3px;
}
.header {
margin-top: 2.5vh;
padding: 5px;
font-size: 3em;
text-align: center;
}
.content {
margin-top: 4vh;
padding: 5px;
}
a.navlink:link {
color: white;
text-decoration: none;
}
a.navlink:visited {
color: white;
text-decoration: none;
}
a.navlink:active {
color: white;
text-decoration: none;
}
.navlink:hover {
text-shadow: 1px 1px 0.4em #808080;
}
.navlink {
transition: ease 0.5s;
}
.belowtitle {
font-size: 5vh;
}