-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (87 loc) · 1.27 KB
/
styles.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
/* universal reset */
* {
margin: 0;
}
/* boost fluid design */
html,
body {
box-sizing: border-box;
}
/* background */
body {
background-color: #101114;
}
/* video courtesy dorelys figueroa */
video {
width: 100%;
border-bottom: 0.025em solid greenyellow;
}
.video-div {
position: relative;
}
.overlay {
position: absolute;
top: 57%;
left: 57%;
}
h1 {
font-size: large;
}
.ftl {
float: left;
}
.ftr {
float: right;
}
/* start of table styles */
/* border sides */
table {
margin: auto auto;
border-left: 0.15em dotted greenyellow;
border-right: 0.15em dotted greenyellow;
}
th {
font-size: 4.25em;
text-align: center;
font-variant: small-caps;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
td {
padding: 1.05em;
text-align: justify;
}
.tfh {
font-size: xx-small;
}
/* end of table styles */
/* page footer */
footer {
text-align: center;
font-size: small;
margin-top: 3.45em;
padding-top: 0.5em;
border-top: 0.15em dotted dodgerblue;
text-shadow: 0.015em 0.015em #000;
}
/* color classes */
.color1 {
color: blue;
}
.color2 {
color: dodgerblue;
}
.color3 {
color: greenyellow;
}
.color4 {
color: palevioletred;
}
.color5 {
color: palegreen;
}
.color6 {
color: red;
}
.color7 {
color: yellow;
}