-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (54 loc) · 978 Bytes
/
style.css
File metadata and controls
55 lines (54 loc) · 978 Bytes
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
*{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#menu{
position: absolute;
top: 0px;
left: 0px;
height: 76px;
right: 0px;
background-color: lightslategray;
}
.menu-item{
display: inline-block;
}
#menu-item-home-link{
border: none;
color: #393939;
background-color: cornflowerblue;
}
#menu-item-home:hover #menu-item-home-dropdown{
display: block;
}
#menu-item-home-dropdown{
background-color: aquamarine;
position: absolute;
display: none;
}
#spacing{
height: 76px;
}
#contact{
background-color: #f59042;
color: #3e515c;
text-decoration: none;
border: 3px solid black;
font-size: 54px;
}
.nav-bar {
background-color: black;
}
.nav-bar > ul {
list-style: none;
}
.nav-bar > ul > li {
display: inline-block;
}
.nav-bar > ul > li:hover {
background-color: darkgray;
}
.nav-bar > ul > li > a {
color: white;
text-decoration: none;
font-size: 15px;
}