-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
38 lines (32 loc) · 795 Bytes
/
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
/* Quick hack to get rid of margin and padding. Typically this would be done by the reset styling.*/
* {
margin: 0;
padding: 0;
}
body {
background-color: #eee;
}
nav {
width: 100%;
height: 100px;
background-color: #fff;
}
ul {
margin-left: 60px;
}
ul li {
list-style: none;
float: left;
line-height: 100px;
}
ul li a {
display: block; /* allows to click above or below the actual text */
text-decoration: none; /* removes underline on a link -> may want to do ths for all links on a site */
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
color: #1e1e1e;
padding: 0 20px; /* adds padding of 20px on left and right. not needed on top and bottom due to display:block setting */
}
ul li a:hover {
color: red;
}