-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS.css
More file actions
199 lines (173 loc) · 3.43 KB
/
Copy pathCSS.css
File metadata and controls
199 lines (173 loc) · 3.43 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
COLOR GLOSSORY
Tan (Main content background): #E3C296
Light grey (top header background): #EAEAEA
Dark grey (Shadow): #888888
Dark blue (Shadow): #2F4D8D
Green (Menu background): #96B430
Darker Green (Menu background): #5C8618
*/
body {
margin: 0;
padding: 0;
line-height: 1.5em;
background: #000;
font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
font-size: 12px;
}
b {
font-size: 110%;
}
em {
color: red;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
p {
font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
font-size: 14px;
}
ul{
font-family:"Avant Garde", sans-serif;
font-size: 12px;
}
li{
font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
font-size: 12px;
}
img{
float: left;
margin: 8px;
}
#maincontainer {
margin: 0px 100px 0px 100px;
background: #FFF;
}
#topsection {
background-image: url("Pictures/QueerEngineerHeader.png");
background-position: bottom;
background-size: cover;
height: 300px; /*Height of top section*/
}
#topsection h1 {
margin: 0;
padding-top: 15px;
font-family:"Avant Garde", sans-serif;
font-size: 350%;
color: #FFF;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
position: relative;
top: 190px;
}
#topsection h2 {
margin: 0;
padding-top: 15px;
padding-right: 5px;
font-family: "Avant Garde", sans-serif;
font-size: 255%;
/*text-shadow: h-shadow v-shadow blur color;*/
text-shadow: 0px 0px 20px #000000;
color: #FFF;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
text-align: right;
position: relative;
top: 205px;
}
#menucontainer {
/* background: #CB463F;*/
}
#midsection {
background: #5C8618;
height: 40px; /*Height of top section*/
text-align: center;
}
#midsection h1 {
margin: 0;
padding-top: 15px;
}
#contentwrapper {
float: left;
width: 100%;
}
#contentcolumn {
margin: 0 0 0 230px;
background: #FFF;
/*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
}
#leftcolumn {
float: left;
width: 230px; /*Width of left column*/
margin-left: -100%;
background: #FFF;
}
#rightcolumn {
float: left;
width: 200px; /*Width of right column*/
margin-left: -200px; /*Set left marginto -(RightColumnWidth)*/
background: #FDE95E;
}
#footer {
clear: left;
width: 100%;
background: black;
color: #FFF;
text-align: center;
padding: 4px 0;
}
#footer a {
color: #EAEAEA;
}
#footliner {
clear: left;
width: 100%;
color: black;
font-size: 70%;
text-align: center;
padding: 4px 0;
}
.innertube {
margin: 200px;
/*Margins for inner DIV inside each column (to provide padding)*/
margin-top: 0;
}
.outershadow {
-moz-box-shadow: 0px 0px 15px 3px #000000;
-webkit-box-shadow: 0px 0px 15px 3px #000000;
box-shadow: 0px 0px 15px 3px #000000;
}
.roundcorners {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px; /* future proofing */
-khtml-border-radius: 10px; /* for old Konqueror browsers */
}
/*<head>
<style type="text/css">
div.img
{
margin:2px;
border:1px solid #0000ff;
height:auto;
width:auto;
float:left;
text-align:center;
}
div.img img
{
display:inline;
margin:3px;
border:1px solid #ffffff;
}
div.img a:hover img
{
border:1px solid #0000ff;
}
div.desc
{
text-align:center;
font-weight:normal;
width:120px;
margin:2px;
}
</style>
</head>
<body>*/