-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
176 lines (168 loc) · 6.56 KB
/
Copy pathstyle.css
File metadata and controls
176 lines (168 loc) · 6.56 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
/* style.css – FULL, RED ACCENT, ALL EFFECTS RESTORED */
/* ────────────────────────────────────────
1. COLOR PALETTE
──────────────────────────────────────── */
:root {
--bg: #000000;
--text: #ffffff;
--accent: #ff0040; /* RED – nav, footer, CTA, glow */
--accent-hover: #ff3366;
--danger: #dc3545;
}
/* ────────────────────────────────────────
2. NAVBAR – RED GLASSMORPHISM
──────────────────────────────────────── */
.navbar {
background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.85) 100%) !important;
backdrop-filter: blur(10px);
border-bottom: 4px solid var(--accent) !important;
box-shadow: 0 4px 20px rgba(255,0,64,0.2);
transition: all 0.3s ease;
}
.navbar:hover {
box-shadow: 0 6px 30px rgba(255,0,64,0.4);
}
.navbar .navbar-brand {
color: var(--accent) !important;
text-shadow: 0 0 10px var(--accent);
}
.navbar .nav-link {
position: relative;
color: var(--text) !important;
text-shadow: 0 0 5px rgba(255,0,64,0.3);
transition: color 0.2s ease;
}
.navbar .nav-link::after {
content: '';
position: absolute;
bottom: -4px; left: 50%;
width: 0; height: 2px;
background: var(--accent);
transition: width 0.3s ease;
transform: translateX(-50%);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
width: 80%;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
color: var(--accent) !important;
text-shadow: 0 0 15px rgba(255,0,64,0.6);
}
.navbar-toggler {
padding: 0.25rem 0.5rem;
border-color: var(--accent);
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff0040' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* ────────────────────────────────────────
3. HERO & GLITCH EFFECTS – FULLY RESTORED
──────────────────────────────────────── */
.glitch-overlay {
background: linear-gradient(90deg, transparent 0%, rgba(255,0,64,0.15) 50%, transparent 100%);
animation: glitch 2s infinite linear alternate-reverse;
}
@keyframes glitch {
0% { transform: translate(0); }
20% { transform: translate(-2px, 2px); }
40% { transform: translate(-2px, -2px); }
60% { transform: translate(2px, 2px); }
80% { transform: translate(2px, -2px); }
100% { transform: translate(0); }
}
.glitch, .glitch-text, .glitch-hover {
position: relative;
}
.glitch::before, .glitch-text::before, .glitch-hover::before {
content: attr(data-text);
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
color: var(--accent);
opacity: 0.8;
clip: rect(0, 900px, 0, 0);
animation: glitch-anim 2s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
0%,100% { clip: rect(45px,9999px,52px,0); transform: skew(0.6deg); }
5% { clip: rect(13px,9999px,78px,0); transform: skew(0.4deg); }
10% { clip: rect(30px,9999px,21px,0); transform: skew(0.8deg); }
15% { clip: rect(80px,9999px,64px,0); transform: skew(0.2deg); }
20% { clip: rect(9px,9999px,63px,0); transform: skew(1deg); }
}
/* ────────────────────────────────────────
4. NEON CARDS – FULLY RESTORED
──────────────────────────────────────── */
.neon-card {
background: rgba(26,26,26,0.7) !important;
backdrop-filter: blur(8px);
border: 1px solid rgba(255,0,64,0.3) !important;
transition: all 0.4s ease;
}
.neon-card:hover {
background: rgba(40,40,40,0.8) !important;
box-shadow: 0 0 35px rgba(255,0,64,0.4), 0 0 50px rgba(255,0,64,0.2);
transform: translateY(-8px);
border-color: var(--accent) !important;
}
/* ────────────────────────────────────────
5. CTA BUTTON – RED
──────────────────────────────────────── */
.btn-accent {
background-color: var(--accent);
color: #ffffff !important;
font-weight: 700;
border: none;
box-shadow: 0 0 20px rgba(255,0,64,0.5);
transition: all 0.3s ease;
}
.btn-accent:hover {
background-color: var(--accent-hover);
box-shadow: 0 0 40px rgba(255,0,64,0.8), 0 0 60px rgba(255,0,64,0.4);
transform: scale(1.05);
}
/* ────────────────────────────────────────
6. FOOTER – RED, VISIBLE, GLOW FIXED
──────────────────────────────────────── */
/* style.css - FOOTER SECTION ONLY (COPY-PASTE THIS) */
footer {
flex-shrink: 0;
background: #000000 !important;
border-top: 4px solid #ff0040 !important;
color: #ffffff !important;
text-shadow:
0 0 12px #ff0040,
0 0 24px #ff0040,
0 2px 4px rgba(0,0,0,0.9);
font-weight: 600;
letter-spacing: 0.8px;
padding: 1.75rem 1rem;
font-size: 0.95rem;
backdrop-filter: blur(2px);
}
/* ────────────────────────────────────────
7. LAYOUT – STICKY FOOTER
──────────────────────────────────────── */
body {
min-height: 100vh;
display: flex;
flex-direction: column;
background: var(--bg);
color: var(--text);
}
main {
flex: 1;
}
/* ────────────────────────────────────────
8. MISC – SHADOW GLOW
──────────────────────────────────────── */
.shadow-glow {
box-shadow: 0 0 20px rgba(255,0,64,0.5);
transition: all 0.3s ease;
}
.shadow-glow:hover {
box-shadow: 0 0 40px rgba(255,0,64,0.8), 0 0 60px rgba(255,0,64,0.4);
transform: scale(1.05);
}