blob: 8299b5ad5ecb089dcd34f905fd59994aa26fdcbc (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{strip}
/* page */
body {
color:#fff;
}
html, body, #bodyTable {
background:#111;
}
#contentTable {
width:600px;
}
/* main block */
#header {
background:#444;
background:radial-gradient(ellipse at center, #555, #333);
border:1px solid #000;
border-top:4px solid #f70;
text-align:center;
text-shadow:1px 1px 0px #000;
}
#header #title {
color:#eee;
}
#header #subtitle {
color:#e06900;
}
#content {
background:#111;
border-width:1px;
border-style:solid;
border-color:#666 #000;
box-shadow:inset 0 0 20px #333;
}
#footer {
background:#333;
border:1px solid #000;
border-bottom:2px solid #f70;
}
/* links */
a {
color:#f70;
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
/* images */
img.photo {
border:10px solid #666;
}
img.photo:hover {
border-color:#999;
}
h1, h2, h3, h4, h5 {
color:#bbb;
}
/* paragraphs */
blockquote {
border-left:2px solid #aaa;
border-radius:2px;
}
/* tables */
#content table td {
border-bottom:1px solid #999;
}
#content table th {
background:#666;
border-right:1px solid #aaa;
}
#content table tfoot td {
background:#444;
color:#aaa;
border-right:1px solid #aaa;
}
/* line */
hr {
border-color:#555;
}
{/strip}
|