-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
58 lines (49 loc) · 872 Bytes
/
styles.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
html {
background: #eee;
color: #333;
font: 87.5%/1.6em "Lucida Grande", Tahoma, Verdana, sans-serif;
}
body {
background-color: #fff;
width: 840px;
padding: 1em 2em;
margin: 40px auto;
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
box-shadow: 0 0 10px rgba(0,0,0,0.2);
border-radius: 10px;
}
header[role=banner] h1 {
font-size: 300%;
}
nav {
display:block;
border: 1px dotted #ccc;
border-width: 1px 0;
margin-bottom: 1em;
}
nav ul {
list-style:none;
margin-left:0;
padding-left:0;
font-size:0.9em;
}
nav li {
display:inline;
}
nav li:not(:last-child):after {
content: " · ";
color: #ccc;
}
nav a {
text-decoration:none;
font-weight:bold;
}
a:link,
a:visited {
color: #38c;
}
a:hover,
a:active {
color: #369;
}