-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschool_website_css.css
378 lines (316 loc) · 11.9 KB
/
school_website_css.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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
* {
font-family: "Goudy Old Style", "Garamond", serif; /* Universal font */
}
* {
background-color: floralwhite; /* Universal background color */
}
/* Style for the table of contents */
.toc {
color: black;
background-color: floralwhite;
border: 2px dashed grey;
border-radius: 15px;
text-align: left;
margin: 10px;
font: inherit;
float: left; /* Float the table of contents to the left */
}
/* Style for the Navigate title */
.toc h2 {
margin: 10px;
text-align: left
}
/* Style for the navigation buttons */
.tablink {
background-color: wheat; /* Color for shading */
color: black; /* Color for font */
cursor: pointer;
border-color: black;
display: block; /* Make buttons a block-level element */
margin: 10px; /* Add some margin between buttons */
}
.tablink:hover {
background-color: #A0522D; /* Hover color */
}
/* Style for the image 1, image of students */
#img1 {
float: left; /* Float the image to the left */
margin-right: 5px;
margin-left: 5px;
margin-top: 5px;
margin-bottom: 5px;
clear: left; /* Clear the float */
}
/* Style for the image 2, image of University*/
#img2 {
float: left; /* Float the image to the center */
margin-right: 10px;
margin-left: 10px;
margin-top: 10px;
margin-bottom: 1px;
clear: center; /* Clear the float */
}
/* Style for the container div */
.container {
display: flex;
align-items: center;
}
/* Style for Image 3 */
#img3 {
margin-left: 100px;
margin-right: 165px;
}
.btn {
color: black;
background-color: lightgray;
border: 1px solid black;
border-radius: 5px;
font-size: inherit; /* Inheriting the font size from the universal styles */
transition: all 0.3s;
display: inline-block; /* Ensuring the button takes only as much width as needed */
padding: 5px 10px;
text-decoration: none; /* Removing underline from the link */
box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5); /* Outset shadow */
}
.btn:hover {
color: black;
transform: translateY(-10px);
background-color: rosybrown;
}
.btn:hover a {
text-decoration: none; /* Remove underline from the link */
background-color: rosybrown;
color: inherit; /* Inherit text color from the parent */
}
.btn a {
text-decoration: none; /* Remove underline from the link */
background-color: lightgray;
color: inherit; /* Inherit text color from the parent */
}
/* Style for the horizontal line */
hr {
border: none; /* Remove the default line */
background: linear-gradient(to right, maroon, rosybrown, gainsboro); /* Use a gradient as the background */
height: 2px; /* Set the height to make it bold */
}
table {
width: 55%;
border-collapse: collapse;
margin: 0 auto; /* Center the table horizontally */
table-layout: fixed;
}
td {
border: 3px solid floralwhite;
padding: 15px;
background-color: darkseagreen;
width: 33.33%;
}
td a {
text-decoration: none; /* Remove hyperlink underline */
background-color: DarkSeaGreen;
color: black; /* Set font color to black */
display: block;
}
a {
text-decoration: none;
color: black;
background-color: DarkSeaGreen;
}
td:hover {
background-color: DarkOliveGreen;
}
td:hover a {
background-color: DarkOliveGreen; /* Change color on hover */
}
.btn2 {
color: black;
background-color: lightpink;
border: 1px solid black;
border-radius: 5px;
font-size: inherit; /* Inherit the font size from the universal styles */
transition: all 0.3s;
display: inline-block; /* Ensure the button takes only as much width as needed */
padding: 5px 10px; /* Add padding to the button */
text-decoration: none; /* Remove underline from the link */
box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5); /* Outset shadow */
}
.btn2:hover {
color: black;
transform: translateY(-10px);
background-color: darkseagreen;
}
.btn2:hover a {
text-decoration: none; /* Remove underline from the link */
background-color: darkseagreen;
color: inherit; /* Inherit text color from the parent */
}
.btn2 a {
text-decoration: none; /* Remove underline from the link */
background-color: lightpink;
color: inherit; /* Inherit text color from the parent */
}
#hyperlink {
text-decoration: underline;
color: purple;
background-color: transparent;
}
#hyperlink2 {
text-decoration: underline;
color: maroon;
background-color: transparent;
}
#brown_table {
width: 55%;
border-collapse: collapse;
margin: 0 auto; /* Center the table horizontally */
table-layout: fixed;
}
#brown_table td {
border: 2px solid rosybrown;
padding: 15px;
background-color: #f4e3d3;
width: 33.33%;
}
#brown_table a {
text-decoration: none;
color: black;
background-color: #f4e3d3;
}
#brown_table2 {
width: 70%;
border-collapse: collapse;
margin: 0 auto; /* Center the table horizontally */
table-layout: fixed;
}
#brown_table2 td {
border: 2px solid #f4e3d3;
padding: 15px;
background-color: rosybrown;
width: 33.33%;
}
#brown_table2 a {
text-decoration: none;
color: black;
background-color: rosybrown;
}
#hyperlink3 {
text-decoration: underline;
color: darkolivegreen;
background-color: transparent;
}
.photo-container {
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
margin-right: 10px;
margin-left: 65px;
text-align: center;
}
.photo-description {
margin-top: 5px;
width: 300px; /* Set the width to match the image width */
}
.job_btn {
color: black;
background-color: rosybrown;
border: 1px solid black;
border-radius: 5px;
font-size: inherit; /* Inherit the font size from the universal styles */
transition: all 0.3s;
display: inline-block; /* Ensure the button takes only as much width as needed */
padding: 5px 10px; /* Add padding to the button */
text-decoration: none; /* Remove underline from the link */
box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5); /* Outset shadow */
}
.job_btn:hover {
color: black;
transform: translateY(-10px);
background-color: darkseagreen;
}
.job_btn:hover a {
text-decoration: none; /* Remove underline from the link */
background-color: darkseagreen;
color: inherit; /* Inherit text color from the parent */
}
.job_btn a {
text-decoration: none; /* Remove underline from the link */
background-color: rosybrown;
color: inherit; /* Inherit text color from the parent */
}
/* Styling the search bar and button */
.search-container {
display: flex;
align-items: center;
}
.search-input {
width: 700px; /* Adjust the width as needed */
padding: 8px;
border: 1px solid black;
border-radius: 5px;
}
.search-button {
padding: 8px 12px;
background-color: lightgoldenrodyellow;
color: black;
border: 1px solid black;
border-radius: 4px;
cursor: pointer;
box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5); /* Outset shadow */
}
/* Styling the button when hovered over */
.search-button:hover {
background-color: lightgray;
}
/* styling for Support university page button */
.btn_give {
color: black;
background-color: darkseagreen;
border: 1px solid black;
border-radius: 5px;
font-size: inherit; /* Inheriting the font size from the universal styles */
transition: all 0.3s;
display: inline-block; /* Ensuring the button takes only as much width as needed */
padding: 5px 10px;
text-decoration: none; /* Removing underline from the link */
box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.5); /* Outset shadow */
}
.btn_give:hover {
color: black;
transform: translateY(-10px);
background-color: #A0522D;
}
.btn_give:hover a {
text-decoration: none; /* Remove underline from the link */
background-color: #A0522D;
color: inherit; /* Inherit text color from the parent */
}
.btn_give a {
text-decoration: none; /* Remove underline from the link */
background-color: darkseagreen;
color: inherit; /* Inherit text color from the parent */
}
#hyperlink_CL {
text-decoration: underline;
color: darkslateblue;
background-color: transparent;
}
/* Normal button style */
.arrow-button {
position: absolute;
right: 365px;
top: 100%;
transform: translateY(-150%);
background-color: IndianRed;
border: 2px solid #964b00;
color: #fff;
padding: 10px 20px;
cursor: pointer;
font-family: 'Goudy Old Style', 'Garamond', serif;
font-size: 20px;
transition: background-color 0.3s, transform 0.3s;
}
/* Hover effect */
.arrow-button:hover {
background-color: darkred; /* Change the background color on hover */
transform: translateY(-150%) scale(1.1); /* Scale up the button slightly on hover */
}