-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (69 loc) · 1.14 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
h1 {
font-family: 'Roboto', sans-serif;
color: black;
font-size: 6vh;
}
h2 {
font-family: 'Roboto', sans-serif;
color: black;
font-size: 3vh;
}
h3 {
font-size: 2vh;
}
.landing {
font-size: 10vh;
}
.outer {
height: 100vh;
display: flex;
}
.inner {
margin: auto;
}
.info-section {
text-align: left;
display: inline-block;
background-color: white;
color: #666666;
border-radius: 5px;
transition-duration: .5s;
}
.info-section:hover {
background-color: #ff4500;
color: white;
}
.alternate-info-section {
background-color: #ff4500;
color: white;
display: inline-block;
-webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, .5);
box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, .5);
}
.tiny {
font-family: 'Montserrat', sans-serif;
font-size: 3vh;
color: #ff4500;
}
.reading-text {
color: #666666;
line-height: 2;
font-size: 3vh;
}
.main-navigation {
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, .5);
position: fixed;
background-color: #ff4500;
border-radius: 0px;
width: 100vw;
z-index: 999;
}
.main-navigation a {
color: white;
}
.main-navigation a:hover {
color: black;
}
li {
font-size: 2vh;
}