forked from nerdschoolbergen/Styling-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (74 loc) · 1.23 KB
/
Copy pathstyles.css
File metadata and controls
89 lines (74 loc) · 1.23 KB
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
body {
max-width: 700px;
margin: 0 auto;
font-family: Arial, Helvetica, sans-serif;
}
#header {
padding-top: 20px;
text-align: center;
}
#header h1 {
text-transform: uppercase;
}
#logo {
display: inline-block;
height: 50px;
position: relative;
top: 10px;
margin-right: 10px;
}
#menu {
padding: 0px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
@media only screen and (max-width: 700px) {
#menu {
justify-content: center;
}
#menu li {
margin: 5px;
}
}
#menu a {
text-decoration: none;
padding: 7px 10px;
display: inline-block;
background-color: #BF4D00;
color: white;
border-radius: 3px;
}
#menu a:hover {
cursor: pointer;
background-color: #ff6400;
}
#menu li {
display: block;
}
#menu a.active {
background-color: #ff6400;
}
#submenu {
padding: 0;
display: flex;
justify-content: center;
}
#submenu li {
flex-grow: 1;
}
#submenu a {
display: block;
padding: 5px 0;
width: 100%;
border-radius: 3px;
background-color: lightgrey;
color: black;
}
#submenu a.active {
background-color: #ff6400;
color: white;
}
ul {
list-style-type: none;
}