-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
171 lines (155 loc) · 4.95 KB
/
index.html
File metadata and controls
171 lines (155 loc) · 4.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>REBASE 2025</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
body {
margin: 0;
padding: 0;
background-color: #0c0c1d;
color: #00ffd5;
font-family: 'Orbitron', sans-serif;
line-height: 1.6;
background-image:
radial-gradient(circle at 50% 50%, rgba(103, 0, 180, 0.2), transparent 50%),
linear-gradient(to bottom, #0c0c1d, #1a0b30);
min-height: 100vh;
overflow-x: hidden;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
position: relative;
z-index: 1;
}
.grid-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 255, 213, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 255, 213, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
z-index: 0;
pointer-events: none;
animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
0% { background-position: 0 0; }
100% { background-position: 50px 50px; }
}
h1 {
font-size: 5rem;
margin-bottom: 2rem;
text-align: center;
letter-spacing: 0.5rem;
color: #ff2e88;
text-shadow: 0 0 10px rgba(255, 46, 136, 0.7),
0 0 20px rgba(255, 46, 136, 0.5),
0 0 30px rgba(255, 46, 136, 0.3);
animation: glow 2s ease-in-out infinite alternate;
}
h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(90deg, #00ffd5, #00bfff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
}
h2::before {
content: '';
position: absolute;
left: -15px;
top: 50%;
width: 8px;
height: 25px;
background: #ff2e88;
transform: translateY(-50%);
}
h3 {
font-size: 1.5rem;
color: #f0f0f0;
margin-bottom: 3rem;
border-bottom: 1px solid rgba(0, 255, 213, 0.3);
padding-bottom: 1rem;
}
@keyframes glow {
from {
text-shadow: 0 0 10px rgba(255, 46, 136, 0.7),
0 0 20px rgba(255, 46, 136, 0.5),
0 0 30px rgba(255, 46, 136, 0.3);
}
to {
text-shadow: 0 0 15px rgba(255, 46, 136, 0.9),
0 0 25px rgba(255, 46, 136, 0.7),
0 0 35px rgba(255, 46, 136, 0.5);
}
}
/* Scanline effect */
.scanlines {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
to bottom,
transparent 0%,
rgba(0, 0, 0, 0.1) 0.5%,
transparent 1%
);
pointer-events: none;
z-index: 10;
}
/* CRT flicker */
.crt-flicker {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(18, 16, 16, 0);
opacity: 0;
pointer-events: none;
z-index: 9;
animation: flicker 0.3s infinite alternate;
}
@keyframes flicker {
0% { opacity: 0; }
95% { opacity: 0; }
100% { opacity: 0.1; }
}
/* Terminal cursor animation */
.cursor {
display: inline-block;
width: 12px;
height: 24px;
background: #00ffd5;
margin-left: 5px;
animation: blink 1s steps(2) infinite;
}
@keyframes blink {
0% { opacity: 0; }
100% { opacity: 1; }
}
</style>
</head>
<body>
<div class="grid-overlay"></div>
<div class="scanlines"></div>
<div class="crt-flicker"></div>
<div class="container">
<h1>REBASE 2024</h1>
<h2>Git Overshare:</h2>
<h3>No One Needs to Know You Fixed That Typo. Adding Interactive Rebase to Your Git Workflow</h3>
<div class="cursor"></div>
</div>
</body>
</html>