-
Notifications
You must be signed in to change notification settings - Fork 7
/
stylesheet.css
160 lines (132 loc) · 2.34 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
body {
color: rgb(95,100,85);
background: rgb(215,220,205);
margin: 0px 10px 10px 10px;
}
a {
text-decoration: none;
}
a:link, a:visited {
color: rgb(75,125,150);
}
a:active, a:hover {
color: rgb(150,0,0);
}
h1 {
font-family: Arial, sans-serif;
font-weight: normal;
color: rgb(75,125,150);
margin: 0px;
}
h2, h3, h4, h5 {
border-bottom: 1px solid rgb(200,200,200);
color: rgb(150,0,0);
font-family: Arial, sans-serif;
font-weight: normal;
margin-bottom: 15px;
margin-top: 15px;
}
img {
border: none;
}
p, ol, ul {
margin-top: 0px;
text-align: justify;
}
ul li {
# margin-left: -25px;
}
ol li {
# margin-left: -20px;
}
table {
border-collapse: collapse;
margin: auto;
width: 900px;
height: 100%;
}
table table {
margin: 0px;
width: 100%;
height: 0px;
}
td {
padding: 0px;
font-family: Arial, Sans-Serif;
# font-size: 10pt;
width: 40;
}
#body-left {
background: url(gfx/body-left.gif);
vertical-align: bottom;
}
#body-right {
background: url(gfx/body-right.gif);
vertical-align: bottom;
}
#body-bottom-left {
background: url(gfx/body-bottom-center.gif);
width: 100%;
}
#body-bottom-right {
background: url(gfx/body-bottom-center.gif);
width: 100%;
text-align: right;
}
#header-left {
background: white;
width: 100%;
border-bottom: 1px solid rgb(150,0,0);
padding: 10px 20px;
}
#header-right {
background: white;
border-bottom: 1px solid rgb(150,0,0);
padding: 10px 20px;
text-align: right;
}
#logo-left {
font-size: 24pt;
}
#logo-right {
color: rgb(95,100,85);
font-size: 16pt;
padding-left: 10px;
}
#menu-left {
background: url(gfx/menu-center.gif) repeat-x;
padding: 5px 10px;
}
#menu-left a {
padding: 5px 12px 6px 12px;
border-top: none;
border-bottom: none;
}
#menu-left a:hover {
background: rgba(255,255,255,0.75);
}
#menu-right {
background: url(gfx/menu-center.gif) repeat-x;
padding: 5px 20px;
white-space: nowrap !important;
}
#menu-right form {
margin: 0px;
}
#menu-right input {
font-size: 9px;
border: 1px solid rgb(95,100,85);
}
#content {
background: url(gfx/main.gif) rgb(235,240,225) repeat-x;
border-top: 1px solid rgb(235,240,230);
padding: 0px 20px;
vertical-align: top;
height: 100%;
}
#footer {
background: white;
width: 100%;
border-top: 1px solid rgb(175,180,165);
padding: 10px 20px 0px 20px;
}