-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
254 lines (244 loc) · 4.31 KB
/
style2.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
/*
colors:
background: #ffbdcb
darker pink: #f893b5
outline: #b64c81
light blue: #bde0fe
*/
body{
background-color: #ffbdcb;
font-family: Arial, Helvetica, sans-serif;
padding: 0;
margin: 0;
}
/*
make it so that the leaves from style 1 are not shown
*/
.header{
display:none;
}
/*
navigation bar at top of page
*/
.nav{
width: 100%;
display: inline-flex;
justify-content: left;
}
nav ul{
background-color: #f893b5;
height: 80px;
width: 100%;
margin: 0;
top: 0;
left: 0;
padding: 0;
list-style-type: none;
display: inline-flex;
align-items: center;
position: fixed;
overflow: hidden;
z-index: 10;
}
nav li a{
font-size: 20px;
width: auto;
overflow: hidden;
text-align: center;
text-decoration-line: none;
background-color: #bde0fe;
height: 20px;
padding: 20px;
color: black;
display: inline-flex;
justify-content: center;
border: 2px solid #b64c81;
margin: 5px;
}
nav li:first-child{
padding-left: 5px;
}
/*
colors for links on the page
*/
a:link{
color: #8B008B;
}
a:visited{
color: #FF00FF;
}
a:hover{
color: #8B008B;
}
/*
style change button formatting
*/
button{
background-color: #bde0fe;
text-align: center;
border: none;
font-size: 20px;
color: #8B008B;
font-family: Arial, Helvetica, sans-serif;
display: inline-flex;
}
.button:visited{
color: #FF00FF;
}
.button:hover{
color: #8B008B;
}
.intro{
margin-top: 120px;
align-items: center;
}
.intro h1{
text-align: center;
}
.intro iframe{
width: 900px;
height: 700px;
}
#resume{
border: 2px solid black;
background-color: #bde0fe;
text-align: center;
display: flex;
flex: 3;
flex-basis: 100%;
margin: 10px;
padding: 10px;
margin-left: 20%;
height: 80%
}
.columns{
display: flex;
flex-direction: column;
flex: 1;
flex-basis: 100%;
width: 100%;
margin: 10px;
padding: 10px;
align-items: center;
justify-content: space-evenly;
margin-right: 20%;
}
#rows{
flex-direction: row;
border: 2px solid black;
background-color: #bde0fe;
margin: 10px;
padding: 10px;
padding-top: 0px;
padding-right: 20px;
width: 100%;
flex-basis: 100%;
}
#rows h3{
text-align: center;
}
/*
wrapper and boxes used to have the two separate columns
*/
.style-2-wrapper{
display: flex;
margin: 10px;
align-items: center;
justify-content: center;
}
.style-2-wrapper h1{
text-align: center;
}
.style-2-wrapper h4{
text-align: center;
}
#first-box{
border: 2px solid black;
background-color: #bde0fe;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
flex: 3;
flex-basis: 100%;
margin: 10px;
padding: 10px;
overflow: hidden;
}
#second-box{
border: 2px solid black;
background-color: #bde0fe;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
flex-basis: 100%;
flex: 1;
margin: 10px;
margin-top: 120px;
padding: 10px;
overflow: hidden;
}
/*
formatting used for index content
*/
.body-text{
display: flex;
margin: 10px;
align-items: center;
}
#body-image{
border: 2px solid black;
background-color: #bde0fe;
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
margin: 10px;
padding: 10px;
width: 340px;
align-content: center;
justify-content: center;
height: 340px;
}
#body-image img{
height: 300px;
width: 300px;
padding: 10px;
}
#intro-words{
border: 2px solid black;
background-color: #bde0fe;
display: flex;
flex-direction: column;
flex-basis: 250px;
flex: 20;
margin: 10px;
padding: 10px;
width: auto;
}
/*
formatting for the clickable images on the bottom of the screen
*/
.footer{
width: 100%;
height: 80px;
background-color: #f893b5;
position: fixed;
display: inline-flex;
flex-direction: row;
justify-content: flex-end;
bottom: 0;
right: 0;
overflow: hidden;
border: none;
margin-top: 100px;
padding: 5px;
text-decoration-line: none;
}
.footer img{
width: 75px;
height: 75px;
margin-left: 5px;
margin-right: 5px;
}