-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (64 loc) · 1.21 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
/* User Story #13: The navbar should always be at the top of the viewport.*/
body {
background-color: #EEEEEE;
}
#header {
position: fixed;
top: 0;
background-color: #eeeeee;
width: 100%;
margin: auto;
display: flex;
justify-content: space-between;
}
#header-img {
width: 25%;
}
#nav-bar {
display: flex;
justify-content: center;
height: 50px;
}
.nav-list {
list-style: none;
margin: auto;
padding: auto;
}
.nav-list li {
display: inline;
}
.nav-link {
margin: 0 2vw 0 2vw;
padding: 5px 2vw 5px 2vw;
text-decoration: none;
font: normal small-caps normal 16px/1.4 Georgia;
color: #aaaaaa;
/* Button stuff */
background-color: black;
border-radius: 5px;
}
.nav-link:hover {
background-color: #222222;
color: #cccccc;
}
.nav-link:active {
background-color: #444444;
color: #eeeeee;
}
/* User Story #14: My product landing page should have at least one media query. */
@media (max-width: 450px) {
body {
font-size: 10px;
}
}
/* User Story #15: My product landing page should utilize CSS flexbox at least once. */
#main {
padding-top: 100px;
margin: auto;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
#video {
}