blob: c73af3d0a5fba89ae3519bfde8ac6d39bfd70953 (
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
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
|
body {
background-color: #e6f0f0;
color: #111111;
font-size: 10px;
font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
margin: 20px;
}
small {
font-size: 10px;
}
label {
display: inline-block;
min-width: 100px;
text-align: right;
padding-right: 5px;
}
button {
font-size: 10px;
font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
font-weight: bold;
color: #140A0A;
border: 2px #140A0A solid;
padding: 2px;
margin: 3px;
background-color: #c8d0dc;
text-transform: uppercase;
}
.desktop button:hover {
color: #040a0a;
background-color: #d8ece0;
}
.head a:link { color: #000;}
.head a:visited { color: #000;}
.head a:active { color: #000;}
.head a:hover { color: #558;}
h1 {
font-size: 30px;
font-weight: bold;
margin: 0;
}
.bluebox {
background-color: #d8e0ec;
color: #000000;
text-align: center;
border: 2px solid #201010;
padding: 3px;
margin: 0 0 5px 0;
}
.bluebox input[type=text] {
border: 1px solid #000;
font-size: 12px;
position: relative;
top: 1px;
margin-bottom: 5px;
}
hr {
border-color: #000;
}
#sidebar {
width: 300px;
}
#searchbox.bluebox {
text-align: left;
padding: 3px 2px 3px 4px;
}
#searchbox input[type=text] {
width: 225px;
margin-left: 3px;
}
#hootbox.bluebox {
text-align: left;
padding: 0;
}
#hootbox form {
padding: 4px;
}
#hootbox input[type=text] {
width: 225px;
margin-left: 3px;
}
#hootbox button {
width: 44px;
}
#hoots {
margin: 0;
padding: 0;
border-spacing: 0;
}
#hoots tr {
margin: 0;
padding: 0;
}
#hoots td {
margin: 0;
padding: 0;
border-top: 2px solid #000;
}
#hoots td:nth-child(1){
border-right: 2px solid #000;
width: 40px;
height: 40px;
background-size: cover;
background-position: center center;
}
#hoots td:nth-child(2){
text-align: left;
padding: 5px;
}
#hoots tr:nth-child(odd) td:nth-child(2) { background-color: #f3f1f2; }
#hoots tr:nth-child(even) td:nth-child(2) { background-color: #e3e8e3; }
|