-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
260 lines (249 loc) · 4.92 KB
/
Copy pathstyle2.css
File metadata and controls
260 lines (249 loc) · 4.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
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
/* General Reset */
body, h1, h3, p, ul, li, textarea {
margin: 0;
/* padding: 0; */
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f9;
margin: 0;
padding-top: 60px; /* To account for fixed navbar */
}
/* Header */
header {
text-align: center;
background-color: #1abc9c;
color: white;
padding: 20px 10px;
margin-bottom: 20px;
}
header h1 {
font-size: 2.5rem;
font-weight: bold;
}
/* div {
background: white;
padding: 15px;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
} */
/* Content Section */
.content {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
article {
background: white;
padding: 15px;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
article h2 {
font-size: 1.8rem;
color: #2c3e50;
margin-bottom: 10px;
}
article p {
font-size: 1rem;
/* margin-bottom: 15px; */
}
article img {
display: block;
max-width: 100%;
margin: 10px 0;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
justify-self: center;
}
article a{
font-size: 1rem;
margin-bottom: 15px;
}
/* Footer */
footer {
text-align: center;
background: #34495e;
color: white;
padding: 20px;
position: relative;
}
footer textarea {
width: 80%;
height: 150px;
margin-top: 20px;
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
resize: none;
}
footer textarea:focus {
outline: none;
border-color: #1abc9c;
box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
}
/* Navigation Bar */
.fixed-top-bar {
position: fixed;
top: 0;
width: 100%;
background-color: #2c3e50;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
z-index: 1000;
padding: 10px 0px;
}
.navbar {
list-style: none;
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px 0;
}
.nav-item {
display: inline;
}
.nav-link {
text-decoration: none;
color: white;
font-size: 18px;
padding: 5px 15px;
transition: background-color 0.3s ease, text-decoration 0.3s;
}
.nav-link:hover {
background-color: #34495e;
border-radius: 5px;
}
.nav-link span {
position: relative;
}
.nav-link span::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: #f1f1f1;
transition: width 0.3s;
}
/*-------------------- Home Page Style --------------------*/
.profile-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
min-width: 400px;
}
.profile-container img {
width: 100%;
max-width: 275px;
border-radius: 50%;
display: block;
margin: 0 70px 0px;
}
.profile-info{
background: white;
padding: 15px;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
min-width: 400px;
}
.profile-subtext{
justify-self: center;
}
/* .profile-info h2{
margin-bottom: 0px;
} */
.network-icons{
padding: 0;
display: flex;
justify-content: center;
gap: 20px;
}
.network-icons li{
list-style: none;
}
.network-icons a{
font-size: 2rem;
}
.description-side h1{
font-size: 1.8rem;
color: #2c3e50;
/* margin-bottom: 10px; */
margin: 10px 0px 10px; /* margin order: clockwise starting from top*/
}
.description-side h3{
font-size: 1.4rem;
margin-top: 10px;
}
/*-------------------- Projects/Portfolio Webpage --------------------*/
.project-text-section h3{
margin-bottom: 5px;
}
.References{
margin: 5px 0px 5px;
}
/*-------------------- Skills/Qualifications Webpage --------------------*/
.skills-page{
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.resume-container{
justify-self: center;
justify-items: center;
margin: 0px auto;
margin-bottom: 20px;
}
.resume-container h2{
justify-self: center;
margin-top: 10px;
}
.resume-container iframe{
min-width: 500px;
min-height: 500px;
}
/*-------------------- Service Webpage --------------------*/
.service-page-container{
display:flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
}
.service-container{
justify-items: center;
max-width: 500px;
width: 40vw;
min-width: 275px;
margin: 0px 1vw 10px 1vw;
}
.service-container i{
font-size: 7rem;
display: block;
max-width: 100%;
margin: 10px 0;
padding: 7px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
justify-self: center;
}
.service-container img{
max-width: 500px;
max-height: 500px;
width: 50%;
height: 50%;
}
.service-container h3{
text-align: center;
margin-bottom: 5px;
}
.service-text-section{
justify-items: center;
}
/*-------------------- Semiconduct and AI Webpage --------------------*/