-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstysheet.css
More file actions
452 lines (329 loc) · 9.96 KB
/
stysheet.css
File metadata and controls
452 lines (329 loc) · 9.96 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
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
h1{font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size:20px;}
h2 {color:blue}
body {
background-color: #eee;
}
.transparentbox {
position: relative; /* Make sure ::before positions inside this box */
color: white; /* Make text readable */
padding: 20px;
width: 300px;
height: 150px; /* dot used as class is used else used hash tag*/
font-family: sans-serif;
margin: 50px auto;
}
.transparentbox::before {
content: '';
position: absolute;
top: 0;
left: 0; /*boxx*/
right: 0;
bottom: 0;
background-color: #0f3;
opacity: 0.7;
z-index: -1;
}
#header{ border: 30px solid black; width:100px; height:200px;
color:coral;}
#middle{ font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
#middle p{text-indent: 50px;
}
p {margin-bottom: 25 px;
margin-top: 25px;
margin-right: 15px;
margin-left: 15px;}
p {margin-bottom: 25 px;
margin-top: 25px;
margin-right: 15px;
margin-left: 15px;}
blockquote{ padding-bottom: 25px;
padding-top: 25px;
padding-right: 25px;
padding-left: 25px;}
#CampDescription {text-align:right;}
.exam { word-spacing:30em; }
a:link{color:blue;}
a:visited {color: purple;}
a:hover {color: orange;}
a:active {color: red;}
a.navlinks:link {color: white;}
a.navlinks:visited {color: gray;} /*ONLY FOR 'A' LINK WITH CLASS,NOT DIV*/
a.navlinks:hover {color: rgb(8, 59, 40);}
a.navlinks:active {color: rgb(153, 13, 200);}
.navlinks a:link { color: white; }
.navlinks a:visited { color: gray; }
.navlinks /*a:hover { color: rgb(8, 59, 40); }*/ a:hover {color: rgb(0, 17, 255);
font-weight: bold;
text-decoration: none;
background-color: rgb(0, 255, 13);}
.navlinks a:active { color: rgb(153, 13, 200); } /*use this for all class*/
img {border-width: 5;}
/* .headshot {border-style: double;
border-left-style:dotted;
border-right-style:ridge;
border-width: 10px;
border-left-width: 20px;
border-right-width: 5px;
border-color: #C00;
}*/
/*
.headshot {
border-style: double;
border-left-style: dotted;
border-right-style: ridge;
border-width: 10px;
border-left-width: 20px; /*FOR DIFFERENT LINES BUT SAME BRODER
border-right-width: 30px;
border-color: #C00;
margin-bottom: 20px; /*Adds space between images *****
clear: both; /*ensures each .headshot is on a new line ****
display: inline-block; /* Optional: for better layout control
}
*/
.headshot {
border-style: double;
border-left-style: dotted;
border-right-style: ridge;
border-width: 10px; /*SAME BORDER ON SAME LINE*/
border-left-width: 20px;
border-right-width: 5px;
border-color: #C00;
display: inline-block; /* Keep items side-by-side */
margin: 10px; /* Space between images */
}
.headshot img {
width: 270px;
height: 480px;
display: block;
}
.thumbnail {float: left; padding: 15px;}
img.cement {display: block; margin-left: auto; margin-right: auto;}
/*
body {background-image: url("file:///C:/Users/jitad/Desktop/picture2/We%20are%20falling%20in%20the%20.jpg");} */
/* body {background-image: url("file:///C:/Users/jitad/Desktop/picture/Anime%20girl%20%20(30).jpg");
background-attachment: fixed;
background-repeat: no-repeat;}*/
img.centered {display: block; margin-left: auto; margin-right: auto;} /*center class*/
/*.mod li{ /*list-style-image: url(); list-style-position:inside;}*/
.mod li {
/* list-style-position: inside; */ /*NOT WORKINGGG*/
list-style-type: decimal-leading-zero; /* Optional: show zero before decimal numbers// lower roman , upper roman, upper alpha, */
}
.mod ul{
background:#0f3;
margin: 15px;
padding: 3px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.mod ul{
border-style:solid;
border-width: medium;
border-color:rgb(244, 4, 248);
}
.mod li{
border-style:dashed;
border-width: medium;
border-color:black;
}
.mod li{
color:rgb(9, 0, 81);
background:#ccc;
margin:12px;
padding: 12px 0px 12px 12px; /*NO GAPS IN 12PX*/
list-style:none;
}
#example {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
}
#navlist {
/*width: 250px; */
padding-left: 0;
margin-left: 20px;
border-bottom: 2px solid #a6a5a7;
}
#navlist li {
list-style: none;
margin: 0;
border-top: 1px solid #666666;
line-height: 200%; /*the distance of line from text*/
}
#navlist li a {
color: #990000; /*text color*/
display: block; /*start to width specified, takes all of it*/
padding-left: 5px;
text-decoration: none;
}
#navlist li a:hover {
color: #ffffff;
background-color: #333333;
}
.active {
background-color: #990000;
color: #ffffff;
font-weight: bold;
padding-left: 5px;
} /*213*/
#eg2 {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
}
#navlist22 {
margin: 0;
padding: 0;
text-align: center;
}
#navlist22 li {
list-style: none;
display: inline; /*no line breaks, width and height ignored, padding and margin (vertical) both ignored, multiple elements together*/
}
#navlist22 li a {
color: #fff;
background-color: #900;
padding: .2em 1em;
text-decoration: none;
}
#navlist22 li a:hover {
color: #ffffff;
background-color: #333333;
}
.active1 {
border: 1px solid #900;
color: #900;
font-weight: bold;
padding: .2em 1em;
}
td {font-family: verdana;
font-size: 10pt;}
.testing {
border: 3px solid rgb(221, 23, 23);
}
.testing td {
width: 50px;
height: 100px;
text-align: center;
vertical-align: middle;
}
.testing img {
max-width: 100%;
height: auto;
}
.float-right {
float: right;
width: 200px;
height: 200px;
border: 10px solid rgb(7, 171, 23);
margin-left: 5px; /* Adds spacing from text */
}
.float-right td {
border: 10px solid rgb(132, 15, 228);
text-align: center;
}
.test22 {
font-family: Verdana;
}
.float-right {
background-color: aqua;
}
/* table {background-image: url('images/stripes.gif');*/
.testing {
background-image: url('https://www.bing.com/th/id/OGC.4a794af823608b06b3b35ad8371e4737?pid=1.7&rurl=https%3a%2f%2fwww.gifcen.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-girl-gif-5.gif&ehk=a6%2fZQovd1KlATYxuCBcj26OtzRn0pXt1VaODzK2Z7zc%3d');
width:500px;
height:281px;
/*margin-left:auto;
margin-right:auto;*/
}
.testing td img{
width:85px;
height:50px;
}
/*.testing table{ border-spacing: 45px;
border-collapse: separate;}
.testing td{
padding:30px;
} */
.ezez caption {text-align: right; caption-side: bottom;}
.tableeg td{
text-align: '.';
}
.left {text-align: left; vertical-align: top;}
.right {text-align: right; vertical-align: bottom;}
.center {text-align: center; vertical-align: middle;}
/*th--table header*/
.uni{background-color: rgb(109, 235, 109);} /*248*/
/*th {width: 33%;}*/
/*.no-wrap td{
white-space: nowrap;
}
WRONG AS IT TARGETS A TD INSIDE CLASS NO-WRAP, CAN BE TABLE
*/
td.no-wrap{ /*NO SPACE BEWEEN TD AND .CLASSNAME ,IF TD FRONT*/
white-space: nowrap;
border: 1px solid black;
padding: 5px; /*TARGET ONLY THOSE TD HAVING NO-WRAP CLASS*/
}
.body1 {font-family: verdana;}
.body1 thead {background-color: black;
color: white;}
.body1 tbody {background-color: #ccc;}
.body1 tfoot {font-size: 10pt;
font-style: italic;}
.coleg colgroup#group1 {width:50px;} /*tag and class or id name together , if tag front*/
.coleg colgroup#group2 {width:25px}
.body2 colgroup#tuition {width: 80px;}
.body2 colgroup col#base {background-color: #C00;}
.body2 colgroup col#books {width: 25px;}
.body2 colgroup col#total {background-color: yellow;} /*PERCENTAGE AS WIDTH WORKS IF ALREADY WIDTH OF MAIN BODY OR TABLE OR COLGROUP SET*/
#seee {
/*max-height: 100px; /* Set a height limit */
/*overflow-y: scroll; /* Enable vertical scroll if content overflows, can be 'auto' */
overflow:scroll;
border: 1px solid #ccc; /* Optional: just to make it visible */
padding: 10px;
width: 150px; /* Controls column width */
height: 100px; /* Controls row height */ /* Optional: spacing inside */
}
/* We are going to make a button that will toggle the appearing and disappearing of
a line of text. To hide something using CSS, we can set the display property of the
element to none, like this for a p (paragraph) element:
p {
display: none;
}
And we can toggle it back to visible using:
p {
display: block;
}*/
/*js example*/
#hello div {
height: 20px;
width: 40px;
background-color: white; /*each div above button,has white background, looks empty as no text*/
}
.hide {
display: none;
}
.square {
height: 100px;
width: 100px;
background-color: yellow;
}
.square.blue {
background-color: blue;
}
/* Initial square style */
#shape4 {
height: 100px;
width: 100px;
background-color: yellow;
}
/* Circle style */
.circle {
border-radius: 50%;
}
/*display: inline-block
The element stays in line with other elements (like inline elements).
But it can have width, height, padding, and margin (like block elements).
*/
/*js example ends*/