-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (38 loc) · 798 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (38 loc) · 798 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
body{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 0;
}
header {
background-color: #e2e2e2;
padding: 1em 0;
}
h1 {
margin: 0;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.nav {
margin: 0;
padding: 0;
list-style-type: none;
}
.nav li {
display: inline-block;
}
.nav a {
color: #fff;
display: inline-block;
padding: 0.5em 0.75em;
background-color: #666;
border-radius: 4px;
text-decoration: none;
font-weight: bold;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.nav a:hover {
background-color: #000;
color:#fff;
}
.nav .current {
background-color: red;
}