-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
117 lines (100 loc) · 1.92 KB
/
index.css
File metadata and controls
117 lines (100 loc) · 1.92 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
body {
margin-top: 0px; margin-right: 0px; margin-left: 0px;
}
header img {
width: 100%;
height: 60%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: block;
margin: 0 auto;
}
header {
text-align: center;
}
nav {
height: 50px;
background-color: black;
}
nav img {
padding: 4px;
height: 75%;
}
/* Navigation Bar Styling... mostly */
nav ul {
background-color: black;
/*height: 45px;*/
/*width: 800px;*/
padding: 0px;
margin: 0 0 0 0;
float: right;
/*color: white;*/
/*border-bottom: 1px solid grey;*/
list-style-type: none;
}
nav li {
float: left;
/*color: white;*/
}
nav ul li a {
display: block;
height: 25px;
/*border-right: 1px solid #cccccc;*/
padding: 12px 18px 8px 18px;
vertical-align: middle;
color: white;
}
/* CMC */
h1 {
font-size: 3vw;
font-family: "Gotham Rounded Medium";
position: absolute;
top: 180px;
left: 0;
width: 100%;
color: white;
text-shadow: 2px 2px black;
}
h2 {
padding-left: 20px;
padding-right: 20px;
font-size: 2vw;
font-family: "Gotham Rounded Medium";
}
p {
padding-left: 20px;
padding-right: 20px;
font-size: 1.4vw;
font-family: "Gotham Rounded Light";
}
ul#horizontal-list li {
margin: 0 auto;
display: inline-block;
font-size: 1.2vw;
font-family: "Gotham Rounded Medium";
}
.table {
display: table; /* Allow the centering to work */
margin: 0 auto;
}
footer {
position: absolute;
left: 2px; right: 2px; bottom: 2px;
height: 46px;
background-color: #f3e5f5;
border: 1px solid #ab47bc;
padding: 8px;
}
@font-face {
font-family: "Gotham Rounded Medium";
src: url("resources/GothamRoundedMedium_21022.ttf");
font-weight: bold;
font-style: bold;
}
@font-face {
font-family: "Gotham Rounded Light";
src: url("resources/GothamRoundedLight_21020.ttf");
font-weight: lighter;
font-style: lighter;
}