-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme-2030s-cyber-skydiver.css
More file actions
248 lines (218 loc) · 4.79 KB
/
theme-2030s-cyber-skydiver.css
File metadata and controls
248 lines (218 loc) · 4.79 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
/* STUDIO by DOSAYGO Theme - 2030s Cyberpunk Skydiver */
/* 2030s cyberpunk aesthetic with a skydiving theme */
/* Palette: Cyber Black (#0F172A), Neon Magenta (#FF00FF), Electric Blue (#00FFFF), Holo Purple (#9B59B6), Neon White (#E5E5E5) */
/* Typography: 'Exo 2' for futuristic headings, 'Inconsolata' for monospaced body text */
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inconsolata', monospace;
font-size: 16px;
line-height: 1.6;
color: #E5E5E5; /* Neon White for body text */
background: #0F172A; /* Cyber Black for backdrop */
transition: background 0.3s ease, color 0.3s ease;
position: relative;
overflow-x: hidden;
}
/* Holographic Grid Background */
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to right,
rgba(255, 0, 255, 0.1) 1px,
transparent 1px
),
linear-gradient(
to bottom,
rgba(0, 255, 255, 0.1) 1px,
transparent 1px
);
background-size: 30px 30px;
opacity: 0.5;
z-index: -1;
}
/* Header */
header {
background: rgba(15, 23, 42, 0.9); /* Semi-transparent Cyber Black */
padding: 1.5rem 2rem;
text-align: center;
position: sticky;
top: 0;
z-index: 10;
border-bottom: 3px solid #FF00FF; /* Neon Magenta border */
backdrop-filter: blur(10px);
}
header h1 {
font-family: 'Exo 2', sans-serif;
font-size: 2.5rem;
font-weight: 700;
color: #00FFFF;
text-transform: uppercase;
letter-spacing: 0.2em;
text-shadow: 0 0 10px #FF00FF; /* Neon Magenta glow */
}
nav {
margin: 1rem 0;
}
nav a {
font-family: 'Exo 2', sans-serif;
color: #E5E5E5;
text-decoration: none;
margin: 0 1.5rem;
font-size: 1.2rem;
padding: 0.5rem 1rem;
border: 2px solid #00FFFF;
background: rgba(0, 255, 255, 0.2); /* Semi-transparent Electric Blue */
transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
nav a:hover {
background: #00FFFF;
color: #0F172A;
transform: scale(1.05);
box-shadow: 0 0 10px #00FFFF;
}
/* Main Content */
main {
max-width: 1200px;
margin: 2rem auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
article {
background: rgba(255, 255, 255, 0.05); /* Semi-transparent white for articles */
border: 2px solid #FF00FF; /* Neon Magenta border */
padding: 2rem;
box-shadow: 0 0 15px rgba(255, 0, 255, 0.3); /* Neon Magenta glow */
position: relative;
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
transform-style: preserve-3d;
}
article:hover {
transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
article h2 {
font-family: 'Exo 2', sans-serif;
font-size: 2rem;
font-weight: 700;
color: #9B59B6; /* Holo Purple for headings */
margin-bottom: 1.5rem;
text-align: center;
text-transform: uppercase;
}
article h3 {
font-family: 'Inconsolata', monospace;
font-size: 1.6rem;
font-weight: 500;
color: #00FFFF;
margin: 1.5rem 0 0.5rem;
}
article p {
color: #E5E5E5; /* Neon White for article text to ensure legibility */
margin-bottom: 1.5rem;
text-align: justify;
}
article ul {
list-style-type: none;
margin-bottom: 1.5rem;
}
article ul li {
margin-bottom: 1rem;
position: relative;
padding-left: 1.5rem;
}
article ul li:before {
content: '🪂';
position: absolute;
left: 0;
font-size: 1.2rem;
}
/* Author Info */
.author {
font-style: italic;
color: #9B59B6;
margin-bottom: 1.5rem;
font-size: 0.95rem;
text-align: center;
}
/* Image Placeholders */
img {
display: block;
width: 100%;
max-width: 300px;
height: auto;
margin: 2rem auto;
border: 2px solid #00FFFF;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
/* Code Blocks */
pre {
font-family: 'Inconsolata', monospace;
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
margin: 1.5rem 0;
box-sizing: border-box;
overflow-x: auto;
border: 2px solid #FF00FF;
}
code {
line-height: 1.6;
white-space: pre-wrap;
word-break: break-word;
color: #E5E5E5;
}
/* Footer */
footer {
text-align: center;
padding: 2rem;
background: rgba(15, 23, 42, 0.9);
color: #E5E5E5;
font-size: 0.9rem;
backdrop-filter: blur(10px);
}
footer a {
color: #FF00FF;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #00FFFF;
}
/* Links */
a, a:visited, a:hover, a:focus, a:link, a:active {
color: #FF00FF;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover, a:focus {
color: #00FFFF;
}
/* Responsive Design */
@media (max-width: 768px) {
main {
grid-template-columns: 1fr;
}
header {
padding: 1rem;
}
header h1 {
font-size: 1.8rem;
}
nav a {
margin: 0 0.5rem;
font-size: 1rem;
}
}