-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
58 lines (50 loc) · 1.08 KB
/
navbar.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
/* --------------------------------------------------------*/
/*-----------------------navbar.css------------------------*/
/* This css file handles the navbar.html display setting */
/* --------------------------------------------------------*/
/* Our navbar is fixed to the top when scrolling */
.fixed-navbar {
overflow: hidden;
position: fixed;
top: 0;
width: 100%;
background-color: #1d1d1f;
box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);
border-bottom: #f5f5f7 1px solid;
}
.names {
text-align: center;
font-family: 'Tahoma', serif;
margin-top: 2px;
margin-bottom: 2px;
padding-bottom: 5px;
color: #f5f5f7;
border-bottom: 1px solid #f5f5f7;
}
.links {
float: right;
}
ul {
list-style-type: none;
font-family: 'Kaushan Script', serif;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
color: #f5f5f7;
text-align: center;
padding: 14px 16px;
font-size: 24px;
text-decoration: none;
}
li a:hover {
color: orange;
}
.active {
color: orange;
}