-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.css
52 lines (52 loc) · 785 Bytes
/
home.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
html {
background-color: #DDF;
height: 100%;
}
body {
min-height: 100%;
max-width: 6.5in;
margin: 0 auto;
font-family: Georgia, serif;
color: black;
background-color: white;
box-shadow: 0 0 1em black;
-moz-box-shadow: 0 0 1em black;
-webkit-box-shadow: 0 0 1em black;
}
#body {
padding: 1em;
}
h1 {
font-size: 2em;
margin: 0;
}
h1 small {
font-size: 60%;
}
code {
font: 90% monospace;
background: #DDD;
border-radius: .3em;
-moz-border-radius: .3em;
-webkit-border-radius: .3em;
padding: 0 .3em;
}
code:hover {
color: #DDD;
background: #222;
}
a {
color: mediumblue;
text-decoration: none;
}
a:hover {
color: black;
text-shadow: #40F 0 0 .2em;
}
a:active {
color: #400;
text-shadow: red 0 0 .2em;
}
ul {
padding-left: 1em;
}