-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
240 lines (212 loc) · 4.53 KB
/
styles.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
/* Font imports */
@import url("https://fonts.googleapis.com/css2?family=Special+Elite&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Righteous&family=Tiny5&display=swap");
@font-face {
font-family: "1942 report";
src: url(./1942.ttf);
}
@font-face {
font-family: "CarbonType";
src: url(./carbontype.ttf);
}
@font-face {
font-family: "#1 Ichiro";
src: url(./phitradesign\ Handwritten\ Thin.ttf);
}
/* CSS Variables */
:root {
--bg-color: #ffffff;
--text-color: #0039a6;
--text-color-line: #0039a6;
--heading-color: #ac3235;
--container-bg: #f5f5f5;
}
.dark-mode {
--bg-color: #352d19;
--text-color: #ffffff;
--text-color-line: #00ff2f;
--heading-color: #00ff2f;
--container-bg: #00000081;
}
/* Global Styles */
body {
font-family: "#1 Ichiro", cursive;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
margin: 0;
padding: 0;
font-size: 16px;
transition: background-color 0.3s ease, color 0.3s ease;
overflow: auto;
}
/* Container Styles */
.container {
max-width: 800px;
margin: 40px auto;
padding: 80px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 1px 15px rgba(0, 0, 0, 0.2);
background-color: var(--bg-color);
background-image: linear-gradient(var(--text-color) 1px, transparent 1px),
linear-gradient(90deg, var(--heading-color) 1px, transparent 1px);
background-size: 100% 26px, 100% 100%;
background-position: 0 0, 60px 0;
border-radius: 10px;
}
/* Header Styles */
header {
text-align: center;
margin-bottom: 20px;
border-bottom: 2px solid var(--heading-color);
padding-bottom: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
color: var(--heading-color);
text-transform: uppercase;
letter-spacing: 2px;
}
h2 {
font-size: 24px;
margin-top: 25px;
margin-bottom: 15px;
/* border-bottom: 1px solid var(--heading-color); */
padding-bottom: 5px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--heading-color);
}
/* Link Styles */
a {
color: var(--accent-color);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Button Styles */
.download-button,
.mode-toggle {
display: flex;
justify-content: center;
align-items: center;
background-color: var(--heading-color);
color: var(--container-bg);
padding: 10px 20px;
text-decoration: none;
font-weight: bold;
transition: opacity 0.3s ease;
border: none;
cursor: pointer;
}
.download-button:hover,
.mode-toggle:hover {
opacity: 0.9;
}
.mode-toggle {
position: fixed;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 20px;
}
/* Skills and Additional Info Styles */
.skills {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.skills div {
flex: 1;
min-width: 200px;
}
.skills ul,
.additional-info ul {
list-style-type: none;
padding-left: 0;
}
.skills ul li,
.additional-info ul li {
margin-bottom: 8px;
padding-left: 20px;
position: relative;
}
.skills ul li::before,
.additional-info ul li::before {
content: "•";
color: var(--accent-color);
position: absolute;
left: 0;
}
/* Experience Item Styles */
.experience-item {
/* background-color: var(--section-bg); */
/* padding: 15px; */
margin-bottom: 15px;
/* border-left: 4px solid var(--accent-color); */
}
/* Retro Effects */
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(
to right,
var(--text-color-line) 1px,
transparent 1px
),
linear-gradient(to bottom, var(--text-color-line) 1px, transparent 1px);
background-size: 10px 10px;
animation: moveLines 5s linear infinite;
z-index: -1;
filter: blur(2px);
pointer-events: none;
}
body::after {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(
to right,
var(--text-color-line) 1px,
transparent 1px
),
linear-gradient(to bottom, var(--text-color-line) 1px, transparent 1px);
background-size: 10px 10px;
/* background-size: 100% 4px; */
z-index: -1;
opacity: 0.5;
pointer-events: none;
}
/* Animations */
@keyframes moveLines {
0% {
background-position: 0 0;
}
100% {
background-position: 20px 20px;
}
}
/* Media Queries */
@media (max-width: 600px) {
body {
font-size: 14px;
}
.container {
padding: 15px;
}
h1 {
font-size: 28px;
}
h2 {
font-size: 20px;
}
}