blob: 6fde4479db99644c7d4b2f00aed4083f06f3e9b8 (
plain)
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
|
body {
background: #4A525A;
background-attachment: fixed;
}
h1{
text-align: center;
color: #ccc;
text-decoration: none;
font-weight:normal;
}
h2{
text-align: center;
color: #ccc;
text-decoration: none;
font-weight:normal;
}
p{
text-align: center;
color: #ccc;
text-decoration: none;
font-weight:normal;
}
#menu {
background: #333;
list-style: none;
margin: 0;
padding: 0;
width: 20em;
margin-left: auto; margin-right: auto;
}
#menu li {
font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
#menu a {
background: #333;
border-bottom: 1px solid #393939;
color: #ccc;
display: block;
margin: 0;
padding: 8px 12px;
text-decoration: none;
font-weight:normal;
}
#menu a:hover {
background: #2580a2 left center no-repeat;
color: #fff;
padding-bottom: 8px;
}
|