-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
207 lines (179 loc) · 2.3 KB
/
main.css
File metadata and controls
207 lines (179 loc) · 2.3 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
/*
HTML formatting
*/
hmtl {
min-height: 100%;
}
/*
Body background formatting
*/
body {
height: 100%;
background: rgb(226,226,226);
background: radial-gradient(circle, rgba(226,226,226,1) 54%, rgba(192,192,192,1) 88%);
}
/*
Implementation of Classwork classes
*/
.space, .gisc, .gisj, .moviefinder {
display: none;
}
/*
Implementation of project classes
*/
.tic, .weight, .metacritic {
display:none;
}
/*
Link formatting
*/
.link {
text-align: center;
}
/*
Paragraph formatting
*/
p.information{
text-align: center;
}
/*
Heading formatting
*/
h2, h3, p.classlist{
text-align:center;
}
/*
a href formatting
*/
a.outerlinks{
display:block;
text-align: center;
}
/*
Button formatting
*/
button {
display: block;
text-align: center;
margin: 0 auto;
}
/*
Unordered list for Classes formatting
*/
ul.classlist{
display: table;
margin: 0 auto;
text-align: left;
}
/*
Class project formatting
*/
.classproject {
text-align:left
}
/*
Header formatting
*/
header {
background: #a6a6a6;
color: black;
padding: 15px 15px 0 15px;
}
/*
H1 in header formatting
*/
header h1 {
margin: 0;
display: inline;
}
/*
Navigation unordered list item formatting
*/
nav ul li {
background:#dedede;
color: black;
list-style-type: none;
display: inline-block;
padding: 5px 15px;
}
/*
Navigation unordered formatting
*/
nav ul {
margin: 0;
padding: 0 0 0 15px;
display: inline;
}
/*
Navigation unordered list item link formatting
*/
nav ul li a {
color: black;
}
/*
Bio picture formatting
*/
.biopicture {
position:relative;
float:left;
width: 20%;
height:20%;
}
/*
Nature piture formatting
*/
.naturepicture {
position:relative;
float:right;
width: 30%;
height:30%;
}
/*
Three pictures formatting
*/
.multiplepictures {
position:relative;
float:left;
width: 33%;
height:33%;
}
/*
Resume picture formatting
*/
.resumepic {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
width: 50%;
}
/*
Two pictures formatting
*/
.doublepicture {
position: relative;
float:left;
width: 50%;
height: 33%;
}
/*
Navigation unordered list item formatting
*/
.blankspace{
float:left;
width: 0px;
height:0px;
}
/*
Clear class for Floats
*/
.clear {
display: block;
clear: both;
}
/*
Footer formatting
*/
footer {
text-align: center;
}