aboutsummaryrefslogtreecommitdiff
path: root/src/Style/style.css
blob: 439efa6edfdf440b3a6002b63dec11be72ce92f0 (plain)
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
/* Synthwave Terminal */

/* Define the font */
@font-face {
    font-family: 'Hacked';
    src: url('./fonts/Hacked/Hacked-KerX.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Make canvas sit behind everything */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
html, body {
    height: 100%;
    margin: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
body {
    background: radial-gradient(ellipse at bottom, #1a0f2e 0%, #090012 60%, #050008 100%);
    color: #e0d6ff;
    font-family: "Courier New", monospace;
    margin: 0;
    padding: 0;

}

/* Floating terminal panel */
.container {
 /*   visibility: hidden; */
    position: relative;
    top: 35%;
    z-index: 1;
    max-width: 800px;
    margin: 80px auto;
    padding: 30px;
    background: rgba(10, 0, 25, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.4);
    box-shadow:
        0 0 15px rgba(255, 0, 255, 0.2),
        0 0 40px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

/* Title glow */
h1 {
    font-size: 42px;
    text-align: center;
    font-family: 'Hacked';
    color: #ff00ff;
    text-shadow:
        0 0 5px #ff00ff,
        0 0 15px rgba(255, 0, 255, 0.6);
}

/* Subtitle */
.subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #c9b6ff;
}

/* Section headers */
h2 {
    font-size: 22px;
    margin-top: 30px;
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

/* Terminal-style list */
ul {
    list-style: none;
    padding-left: 20px;
}

li::before {
    content: "> ";
    color: #ff00ff;
}

/* Links */
a {
    color: #00ffff;
    text-decoration: none;
}

a:hover {
    text-shadow: 0 0 8px #00ffff;
}

/* Exclude h1 links */
h1 a {
    color: inherit;           /* take h1 color */
    text-decoration: none;    /* remove underline if any */
    text-shadow: none;        /* remove link glow */
}

/* Terminal-style form elements */
input[type="text"],
textarea,
button {
    font-family: 'Hacked', monospace;
    font-size: 16px;
    background: rgba(10, 0, 25, 0.6);
    color: #e0d6ff;
    border: 1px solid #ff00ff;
    border-radius: 4px;
    padding: 10px;
    outline: none;
    box-shadow:
        0 0 5px #ff00ff,
        0 0 15px rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.2s ease-in-out;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input[type="text"],
textarea {
	font-family: "Courier New", monospace;
}

/* Textarea bigger height */
textarea {
    min-height: 100px;
    resize: vertical;
}

/* Hover/focus effects */
input[type="text"]:focus,
textarea:focus {
    border-color: #00ffff;
    box-shadow:
        0 0 5px #00ffff,
        0 0 15px rgba(0, 255, 255, 0.2);
}

/* Button */
button {
    cursor: pointer;
    background: #ff00ff;
    color: #000;
    font-weight: bold;
    border: none;
    box-shadow:
        0 0 10px #ff00ff,
        0 0 20px rgba(255, 0, 255, 0.2);
}

button:hover {
    background: #ff66ff;
    box-shadow:
        0 0 15px #ff66ff,
        0 0 30px rgba(255, 102, 255, 0.3);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    color: #888;
}

/* Gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 255, 0.4);
    transition: all 0.2s ease-in-out;
}

.gallery-item:hover {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 0, 8, 0.95);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border: 1px solid rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ff00ff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.lightbox-close:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}