Skip to content

Commit fc748d5

Browse files
authored
Merge pull request #2 from TheRainbowPhoenix/main
Better first home block
2 parents 0678be6 + 7b9142e commit fc748d5

File tree

9 files changed

+747
-47
lines changed

9 files changed

+747
-47
lines changed

img/3drender.png

15.2 KB
Loading

img/cp.svg

Lines changed: 437 additions & 0 deletions
Loading

img/doom.png

37.2 KB
Loading

img/favicon.svg

Lines changed: 31 additions & 0 deletions
Loading

img/flappy.png

14.6 KB
Loading

img/gb.png

5.83 KB
Loading

img/term.png

5.55 KB
Loading

index.css

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,20 @@
44
--bs-dark-rgb: 20, 20, 90;
55
--bs-light-rgb: 199, 201, 219;
66
--bs-neon: #0c66e9;
7+
8+
--cp-white: #f4f4f5;
9+
--cp-text: #a1a1aa;
10+
--cp-bg: #1f2325;
11+
--cp-accent: #00dc68;
12+
--cp-accent-hover: #2bfd87;
13+
--cp-disabled: #3f3f46;
14+
--cp-text-black: #003719;
15+
716
}
817

918
body {
1019
font-family: 'Poppins', Arial, Helvetica, sans-serif;
20+
background-color: var(--cp-bg);
1121
}
1222

1323
h1,
@@ -27,6 +37,10 @@ section {
2737
background-position-y: bottom;
2838
}
2939

40+
.immersive {
41+
background-color: black;
42+
}
43+
3044
.team-description {
3145
width: 175px;
3246
}
@@ -148,3 +162,53 @@ svg .stroked {
148162
.table {
149163
border-color: #3d3d3d;
150164
}
165+
166+
.screenshot {
167+
image-rendering: pixelated;
168+
margin-top: 2rem;
169+
border-radius: 3rem 3rem;
170+
background: black;
171+
}
172+
173+
.btn-xl {
174+
padding: 0.75rem 1.25rem;
175+
font-size: 1.5rem;
176+
border-radius: 0.45rem;
177+
}
178+
179+
/* Theme fixes */
180+
181+
@media (min-width: 1200px) {
182+
.impact {
183+
font-size: 3.25rem!important;
184+
}
185+
}
186+
187+
.immersive {
188+
min-height: 200%;
189+
overflow: hidden;
190+
}
191+
192+
@media (min-width: 992px) {
193+
.immersive {
194+
min-height: 100%;
195+
}
196+
}
197+
198+
.impact span {
199+
color: #00dc68ff;
200+
}
201+
202+
.btn-primary {
203+
color: var(--cp-text-black);
204+
background-color: var(--cp-accent);
205+
border-color: var(--cp-accent);
206+
}
207+
208+
.btn-primary:hover, .btn-check:focus+.btn-primary, .btn-primary:focus {
209+
color: var(--cp-text-black);
210+
background-color: var(--cp-accent-hover);
211+
border-color: var(--cp-accent-hover);
212+
}
213+
214+

0 commit comments

Comments
 (0)