-
Notifications
You must be signed in to change notification settings - Fork 2
/
navsty.css
59 lines (56 loc) · 1014 Bytes
/
navsty.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
body {
background-color: #666;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight:300;
text-align: left;
text-decoration: none;
height: 500px;
}
header {
position: fixed;
top: 0;
right: 0;
left: 0;
border-bottom: 1px solid #e3e3e8;
}
#logo {
float: left;
font-size: 3em;
margin: 0;
padding: .4em;
text-decoration: none;
color: red;
border-right: 1px solid #e3e3e8;
transition: .5s all;
}
#logo:hover {
color: bloodyred;
background-color: #333;
}
nav {
float: center;
background-color: white;
}
nav ul li a:hover{color: #fafafa;
background-color: #666;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 2.2em 2em;
}
nav ul li {
display: inline;
padding: 60px ;
margin: 70px ;
}
nav ul li a {
color: #333;
text-decoration: none;
text-transform: uppercase;
font-size: 1.6em;
transition: .5s color;
}
nav ul:hover {
border-bottom: 3px solid #333;
}