-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
77 lines (75 loc) · 1.79 KB
/
main.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
html {color: #ffffe8}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
margin: 0; /* Amount of negative space around the outside of the body */
padding: 0; /* Amount of negative space around the inside of the body */
}
td {color: #ffffe8}
p {color: #ffffe8}
b {color: #ffffe8}
u {color: #ffffe8}
body {color: #ffffe8; background-color: #000000; background-image: url("universe.gif"); background-attachment: fixed}
a:link {color: #ffff66; text-decoration: underline}
a:active {color: #ff0033; text-decoration: none}
a:visited {color: #ffcc66; text-decoration: underline}
a:hover {color: #ff0033; text-decoration: underline}
p {
margin: 10px;
}
img, table {
max-width:100%;
height:auto;
}
#header h1 {
margin: 0;
padding: 0;
}
#header h1 a {
background-color: #ccc;
border-bottom: 1px solid #666;
color: #222;
display: block;
font-size: 20px;
font-weight: bold;
padding: 10px 0;
text-align: center;
text-decoration: none;
}
#header ul {
list-style: none;
margin: 10px;
padding: 0;
}
#header ul li a {
background-color: #FFFFFF;
border: 1px solid #999999;
color: #222222;
display: block;
font-size: 17px;
font-weight: bold;
margin-bottom: -1px;
padding: 12px 10px;
text-decoration: none;
}
#content, #sidebar {
padding: 10px;
}
#footer {
display: none;
}
#header h1 a {
text-shadow: 0px 1px 0px #fff;
background-image: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#999));
}
#header ul li:first-child a {
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
}
#header ul li:last-child a {
-webkit-border-bottom-left-radius: 8px;
-webkit-border-bottom-right-radius: 8px;
}
#header ul.hide {
display: none;
}