forked from dartmouth-cs52-18S/workshop-web-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (79 loc) · 1.28 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
* {
padding: 0;
margin: 0;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: white;
}
body {
color: white;
font-family: 'Vollkorn', serif;
font-size: 16px;
}
nav {
background-color: rgb(36, 105, 39);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 100px;
min-width: 400px;
padding: 10px;
}
nav > * {
display: flex;
flex-direction: row;
align-items: center;
}
#tim-pic {
height: 80px;
margin-right: 20px;
border: solid thin white;
}
#company-name {
color: white;
font-size: 1.8em;
}
#nav-links > li {
margin-right: 20px;
font-size: 1.3em;
}
.hamburger {
display: none;
}
/* adapted from https://www.w3schools.com/howto/howto_css_menu_icon.asp */
.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: #ffffff;
margin: 4px 0;
}
.page-container {
display: flex;
flex-direction: column;
align-items: center;
}
.announcement-container {
margin-top: 10vh;
color: black;
display: flex;
flex-direction: column;
align-items: center;
}
@media only screen and (max-width: 800px) {
#nav-links {
display: none;
}
.hamburger {
display: block;
order: 1;
margin-right: 10px;
}
.hamburger:hover {
cursor: pointer;
}
}