-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathabout.html
More file actions
218 lines (211 loc) · 6.97 KB
/
about.html
File metadata and controls
218 lines (211 loc) · 6.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Welcome to OSDC</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-style: url('./assets/gravity-falls/gravitation_falls.otf');
}
body {
background-color: black;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
flex-direction: column;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background:
radial-gradient(circle at center, rgba(0, 0, 0, 0.77) 65%, rgba(0, 0, 0, 0) 100%),
url('./assets/bg.png') no-repeat;
background-size: cover;
background-position: center;
z-index: -1;
}
.logo {
width: 150px;
margin-bottom: 20px;
filter: drop-shadow(0 0 8px #0e0e0e);
border-radius: 50%;
}
.welcome {
color: #ffd700;
text-align: center;
font-size: clamp(42px, 5vw, 46px);
line-height: 1.4;
user-select: none;
padding: 20px;
transition: opacity 1s ease-in-out;
}
.slide {
display: none;
text-align: center;
font-size: clamp(22px, 3vw, 32px);
line-height: 1.6;
max-width: 900px;
padding: 20px;
user-select: none;
animation: fadeIn 1s ease-in forwards;
color: #39ff14;
font-weight: normal;
}
.buttons {
margin-top: 2rem;
display: flex;
justify-content: center;
gap: 20px;
}
.btn {
padding: 10px 25px;
background: transparent;
border: 2px solid #39ff14;
color: #2f961d;
font-size: clamp(16px, 2vw, 20px);
cursor: pointer;
border-radius: 8px;
text-shadow: 0 0 2px #39ff14, 0 0 4px #39ff14;
transition: all 0.3s ease;
}
.btn:hover {
background: #337826;
color: black;
text-shadow: 0 0 6px #39ff14, 0 0 12px #39ff14;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
.terminal {
background: rgba(0, 0, 0, 0.85);
border: 2px solid #39ff14;
border-radius: 8px;
padding: 20px;
margin: 20px auto;
text-align: left;
font-family: monospace;
color: #2f961d;
font-size: clamp(14px, 1.5vw, 18px);
width: 80%;
max-width: 700px;
box-shadow: 0 0 8px #2f961d, 0 0 16px #00ff00;
}
.terminal p {
margin: 8px 0;
}
.prompt {
color: #00ffcc;
}
.command {
color: #2f961d;
}
.output {
color: #888;
font-style: italic;
}
.highlight {
color: #ffd700;
font-weight: normal;
}
@media (max-width: 768px) {
.welcome {
font-size: clamp(24px, 5vw, 36px);
}
.slide {
font-size: clamp(12px, 1.5vw, 18px);
}
}
</style>
</head>
<body>
<div class="welcome">
<img src="./assets/Open_Source_Initiative.svg" alt="OSDC Logo" class="logo" />
<p>WELCOME, MORTALS...</p>
<p>BILL CIPHER HERE TO UNVEIL THE SECRETS OF <span style="font-size: clamp(40px, 6vw, 55px);">OSDC</span>!</p>
</div>
<div class="slide" id="slide1">
<p>“Well, well, well… looks like you kids want to know about <span class="highlight">OPEN SOURCE</span>.”</p>
<p>I’m BILL CIPHER — all-seeing, all-knowing, and today...</p>
<p>YOUR TEACHER.</p>
<p>OPEN SOURCE is like PIZZA 🍕.<br />
CLOSED-SOURCE? You only eat what you’re given.<br />
OPEN SOURCE? You’ve got the recipe — add cheese, jalapeños, or even pineapple if you’re that chaotic.</p>
<div class="buttons">
<button class="btn" onclick="nextSlide(2)">Next →</button>
</div>
</div>
<div class="slide" id="slide2">
<p>This is COLLABORATION. This is CHAOS. This is PURE CODE MAGIC. ✨</p>
<p>The WORLD runs on it — apps, games, even those BIG SCARY CORPORATIONS.</p>
<p>Reality is an illusion, but <span class="highlight">OPEN SOURCE</span> is forever.</p>
<p>So don’t just consume someone else’s code — <br />BREAK IT, FIX IT, REMIX IT.</p>
<p>Code is POWER. And power is meant to be FORKED.</p>
<div class="buttons">
<button class="btn" onclick="nextSlide(1)">← Back</button>
<button class="btn" onclick="nextSlide(3)">Next →</button>
</div>
</div>
<div class="slide" id="slide3">
<p>“So, you’ve been writing code, huh? But what happens when you <span class="highlight">MESS IT UP</span>?”</p>
<p><span class="highlight">GIT</span> is your personal TIME MACHINE.</p>
<div class="terminal">
<p><span class="prompt">$</span> <span class="command">git init</span></p>
<p class="output">✨ Created a new timeline (repository)</p>
<p><span class="prompt">$</span> <span class="command">git add .</span></p>
<p class="output">📦 Staging your chaos...</p>
<p><span class="prompt">$</span> <span class="command">git commit -m "First spell"</span></p>
<p class="output">🪄 Reality saved forever!</p>
</div>
<div class="buttons">
<button class="btn" onclick="nextSlide(2)">← Back</button>
<button class="btn" onclick="nextSlide(4)">Next →</button>
</div>
</div>
<div class="slide" id="slide4">
<img src="./assets/github.jpg" alt="GitHub Logo" class="logo" />
<p>“Welcome to <span class="highlight">GITHUB</span> — the social network for coders, the home of open source collaboration!”</p>
<p>Here, you <span class="highlight">push</span> your code, <span class="highlight">fork</span> others’ projects, and raise <span class="highlight">issues</span> (or just spot bugs).</p>
<p>Branching? That's teamwork at its peak:<br />
<span class="highlight">BRANCH</span> into possibilities.<br />
<span class="highlight">MERGE</span> your universes.</p>
<p>Together, you build, break, and <span class="highlight">improve reality</span> — all on one magical platform.<br />
<span class="highlight">GITHUB</span>: Where code comes alive with the power of open source.”</p>
<div class="buttons">
<button class="btn" onclick="nextSlide(3)">← Back</button>
</div>
</div>
<script>
setTimeout(() => {
document.querySelector('.welcome').style.opacity = 0;
setTimeout(() => {
document.querySelector('.welcome').style.display = 'none';
document.getElementById('slide1').style.display = 'block';
}, 1000);
}, 3000);
function nextSlide(n) {
document.querySelectorAll('.slide').forEach(s => s.style.display = 'none');
document.getElementById('slide' + n).style.display = 'block';
}
</script>
</body>
</html>