-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
284 lines (227 loc) · 5.14 KB
/
style.css
File metadata and controls
284 lines (227 loc) · 5.14 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
body {
background-color: #FFFFFF;
}
.page-wrapper {
background: #EEEEEE;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
.page-body {
width: 100%;
height: 100%;
overflow: hidden;
align-content: center;
}
.menu-bar {
padding: 0;
width: 100%;
background-color: #232323;
border-bottom: 5px solid #0177AF;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.menu-bar ul, .menu-bar li {
margin-bottom: 7px;
}
.menu-bar ul {
list-style: none;
overflow: hidden;
margin: 0;
padding: 0;
margin-left: 10%;
margin-right: 10%;
}
.menu-bar li {
padding-top: 7px;
float: left;
background: #232323;
position: relative;
}
.menu-bar li a {
color: #FFFFFF;
background: #232323;
width: 100%;
padding: 20px 40px;
font: bold 15px/30px sans-serif;
text-align: center;
text-decoration: none;
text-shadow: 1px 0px 1px #222222;
-webkit-transition: all .30s ease;
-moz-transition: all .30s ease;
-ms-transition: all .30s ease;
-o-transition: all .30s ease;
transition: all .30s ease;
}
.menu-bar li#current a{
background-color: #0177AF;
}
.menu-bar li:hover a{
background: #0177AF;
}
.menu-bar li#current:hover a{
background-color: #0177AF;
}
.content-divider {
height: 1px;
width: auto;
margin-left: 15%;
margin-right: 15%;
margin-top: 15px;
margin-bottom: 15px;
background: #CCCCCC;
align-content: center;
}
.content-block {
margin-left: 10%;
margin-right: 10%;
align-content: center;
/*box-sizing: border-box;*/
display: block;
}
.aboutme-block {
background: #1F1F1F;
border-radius: 15px;
padding-left: 3%;
padding-right: 3%;
padding-bottom: 3%;
-webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.75);
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.75);
}
.aboutme-block .picture {
float: left;
margin-top: 5%;
}
.aboutme-block .picture img {
display: block;
border-radius: 7px;
}
.aboutme-block .aboutme-content {
font: normal 13px/20px "Georgia";
color: white;
overflow: auto;
padding-left: 4%;
padding-right: 5%;
}
.aboutme-block .aboutme-content p {
font: normal 13px/20px "Georgia";
color: white;
}
.aboutme-block .aboutme-content a {
color: #0177DF;
}
.aboutme-block .aboutme-content a:hover {
color: #01DDFF;
}
.content-aboutme-top {
/*background: white;*/
}
.content-aboutme-bottom {
}
.content-aboutme-bottom ul {
list-style: none;
position: relative;
}
.content-aboutme-bottom li {
float: left;
background: white;
margin-right: 20px;
padding: 5px 10px;
height: 25px;
border-radius: 5px;
-webkit-box-shadow: inset 0px 0px 15px 1px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 0px 15px 1px rgba(0,0,0,0.75);
box-shadow: inset 0px 0px 15px 1px rgba(0,0,0,0.75);
}
.content-aboutme-bottom li:hover {
-webkit-box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.75);
box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.75);
}
.content-aboutme-bottom img {
display: block;
margin: auto;
max-height: 25px;
}
.page-footer {
text-align-last: center;
font-family: sans-serif;
color: #FFEEFF;
background: #232323;
height: 100%;
padding-top: 25px;
padding-bottom: 25px;
border-top: 5px solid #0177AF;
}
.project-content {
-webkit-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75);
background: #FEFEFE;
}
.project-content td.proj-img {
background: #1F1F1F;
-webkit-box-shadow: 0px 0px 5px 0px rgba(1,1,1,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(1,1,1,0.75);
box-shadow: 0px 0px 5px 0px rgba(1,1,1,0.75);
}
.project-content img, .project-content iframe {
display: block;
}
.project-content h2 {
font: bold 20px/22px sans-serif;
color: #111111;
}
.project-content .text {
padding: 2% 5%;
font: normal 14px/22px sans-serif;
color: #222222;
}
.project-content p, .project-content li {
font: normal 14px/22px sans-serif;
color: #222222;
}
.project-content h2 a {
color: inherit;
font: inherit;
text-decoration: none;
text-shadow: 1px 0px 1px #DDDDDD;
}
.project-content h2 a:hover {
color: #0177AF;
}
h2#my-name {
color: #01AACF;
}
.experience-block {
background: #FEFEFE;
padding: 2% 2%;
-webkit-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75);
}
.experience h2 {
font: bold 20px/22px sans-serif;
color: #111111;
}
.experience .text {
padding: 2% 5%;
font: normal 14px/22px sans-serif;
color: #222222;
}
.experience p, .experience li, .project-content li {
font: normal 14px/22px sans-serif;
color: #222222;
}
.experience h2 a {
color: inherit;
font: inherit;
text-decoration: none;
text-shadow: 1px 0px 1px #DDDDDD;
}
.experience small {
font: normal 12px/22px sans-serif;
}