-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
219 lines (209 loc) · 4.67 KB
/
about.css
File metadata and controls
219 lines (209 loc) · 4.67 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
@charset "utf-8";
/* -------------------- GLOBAL -------------------- */
html, body {
margin: 0;
padding: 0;
font-family: roboto, sans-serif;
background:
linear-gradient(to bottom, rgba(2,24,97,0.85), rgba(2,18,75,0.85), rgba(2,12,57,0.85)),
url("images/tacomanight.jpeg") no-repeat center center fixed;
background-size: cover;
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* -------------------- SITE TITLE -------------------- */
.site-title {
background: linear-gradient(to right, #000000, #020e3f, #001b76);
text-align: center;
padding: 20px;
}
.site-title h1 {
margin: 0;
font-size: 2.5em;
letter-spacing: 1px;
}
/* -------------------- NAVIGATION -------------------- */
nav {
background: linear-gradient(to right, #aaaaaa, #cccccc, #eeeeee);
text-align: center;
padding: 10px 0;
position: sticky;
top: 0;
z-index: 1000;
}
nav a {
color: #000;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
color: #0056b3;
}
/* -------------------- CONTENT -------------------- */
.content {
flex: 1;
max-width: 1000px;
margin: auto;
padding: 40px 20px;
}
.content h2 {
font-size: 2em;
color: #00bfff;
text-align: center;
}
/* -------------------- INTRO CONTAINER -------------------- */
.intro-container {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
margin-top: 20px;
}
.intro-text {
flex: 1 1 60%;
}
.intro-text blockquote p {
margin: 0;
font-weight: 700;
font-size: 1.2em;
}
.intro-text p {
font-size: 1.2em;
line-height: 1.6;
text-indent: 2em;
margin-top: 40px;
}
.intro-text blockquote + p {
margin-top: 40px;
}
/* -------------------- PROFILE IMAGE -------------------- */
.profile-pic {
width: 300px;
height: auto;
border-radius: 15px;
border: 4px solid #001f4d;
box-shadow: 0 0 20px 6px rgba(0, 51, 153, 0.8);
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}
.profile-pic:hover {
transform: scale(1.05);
box-shadow: 0 0 30px 10px rgba(0, 102, 204, 1);
}
/* -------------------- LIGHTBOX -------------------- */
.lightbox {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
opacity: 0;
visibility: hidden;
transition: opacity 0.4s ease, visibility 0.4s ease;
z-index: 2000;
}
.lightbox.show {
opacity: 1;
visibility: visible;
}
.lightbox img {
max-width: 90%;
max-height: 90%;
border-radius: 15px;
border: 4px solid #001f4d;
box-shadow: 0 0 30px 10px rgba(0, 102, 204, 1);
transition: transform 0.3s ease;
}
.lightbox img:hover {
transform: scale(1.02);
}
/* -------------------- SKILLS SECTION -------------------- */
.skills-section {
margin-top: 40px;
text-align: left;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.skills-section h3 {
font-size: 1.8em;
color: #00bfff;
margin-bottom: 20px;
text-align: center;
}
.skills-section ul {
list-style: disc;
padding-left: 40px;
}
.skills-section li {
font-size: 1.2em;
margin-bottom: 12px;
line-height: 1.6;
color: #fff;
}
.skills-section li strong {
font-weight: bold;
}
/* -------------------- RESUME BUTTON -------------------- */
.resume-btn-container {
display: flex;
justify-content: center;
margin: 50px 0 0 0;
}
.resume-btn {
display: inline-block;
padding: 14px 28px;
background: linear-gradient(to bottom, #00cfff, #009acd);
color: white;
font-size: 1.2em;
font-weight: bold;
border-radius: 8px;
text-decoration: none;
transition: background 0.3s ease, transform 0.2s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.resume-btn:hover {
background: linear-gradient(to bottom, #00b5e6, #007fa3);
transform: translateY(-2px);
}
/* -------------------- FOOTER -------------------- */
footer {
text-align: center;
margin-top: 40px;
}
footer h3 {
background: linear-gradient(to right, #000000, #020e3f, #001b76);
color: #fff;
margin: 0;
font-size: 1.4em;
font-weight: normal;
padding: 12px 0;
}
.footer-links {
background: linear-gradient(to right, #aaaaaa, #cccccc, #eeeeee);
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
padding: 20px;
}
.footer-links a {
color: #000;
text-decoration: none;
font-size: 1.1em;
font-weight: bold;
}
.footer-links a:hover {
color: #0056b3;
text-decoration: underline;
}