-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
128 lines (105 loc) · 1.92 KB
/
stylesheet.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#body {
background-color: #FFEEDD;
padding: 15px;
border-style: solid;
border-color: #FFBBAA;
display: inline-block;
width: 100%;
}
.err {
color: #FF0000;
display: inline;
}
.title {
background-color: rgba(255, 255, 255, 0.4);
padding: 0.15em;
display: inline-block;
}
body {
background-image: url('images/background.png');
background-repeat: no-repeat;
background-size: 4in 4in;
background-color: #DA7568;
margin: 0;
}
body > * {
margin-left: 0.5em;
}
.small {
font-size: small;
}
#titlebar {
margin: 0px;
padding: 0px;
border-width: 0px;
}
#titlebar ul {
list-style-type: none;
margin: 0px;
padding: 0px;
overflow: hidden;
}
#titlebar a:link, #titlebar a:visited {
display: block;
color: #FFFFFF;
text-decoration: none;
}
#titlebar a:hover,a:active {
color: #CDCDFF;
}
#titlebar span {
padding: 2px 8px;
background-image: url('images/menubar_background.png');
background-repeat: repeat-x;
}
#titlebar em {
color: #FFD700;
}
#titlebar li {
float: left;
margin: 0px;
padding: 0px;
text-align: center;
text-transform: uppercase;
font-size: 0.8em;
color: #FFFFFF;
font-family: tahoma, sans-serif;
}
table.bordered {
border-collapse: collapse;
border: 2px solid black;
font-family: Tahoma, sans-serif;
text-align: center;
letter-spacing: 0.03em;
}
table.bordered > tbody > tr:first-child {
border: 2px solid black;
}
table.bordered > tbody > tr > th, table.bordered > tbody > tr > td {
border: 1px solid black;
padding: 0.15em 0.5em;
}
#posts {
padding: 0em;
margin: 0em;
font-family: Tahoma, sans-serif;
width: 100%;
border-collapse: collapse;
}
#posts > tbody > tr > td {
border: 1px dotted #EEDDDD;
vertical-align: top;
}
#posts > tbody > tr > td:nth-child(1) {
width: 161px;
}
#posts > tbody > tr > td:nth-child(2) {
padding: 0.5em;
width: 100%;
}
#posts > tbody > tr:nth-child(odd) {
background-color: #FFF6EE;
}
#posts > tbody > tr:nth-child(even) {
background-color: #FFF9F6;
}