-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11dabde
commit b382d7d
Showing
8 changed files
with
251 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,183 @@ | ||
:host { | ||
--white: oklch(100% 0 0); | ||
--f4f4f4: oklch(95% 0.042 0); | ||
--bright-blue: oklch(0.57 0.24 266.03); | ||
--electric-violet: oklch(53.18% 0.28 296.97); | ||
--french-violet: oklch(0.59 0.3 306.65); | ||
--vivid-pink: oklch(69.02% 0.277 332.77); | ||
--hot-red: oklch(61.42% 0.238 15.34); | ||
--orange-red: oklch(63.32% 0.24 31.68); | ||
|
||
--gray-900: oklch(19.37% 0.006 300.98); | ||
--gray-700: oklch(36.98% 0.014 302.71); | ||
--gray-400: oklch(70.9% 0.015 304.04); | ||
|
||
--red-to-pink-to-purple-vertical-gradient: linear-gradient( | ||
180deg, | ||
var(--orange-red) 0%, | ||
var(--vivid-pink) 50%, | ||
var(--electric-violet) 100% | ||
); | ||
|
||
--red-to-pink-to-purple-horizontal-gradient: linear-gradient( | ||
90deg, | ||
var(--orange-red) 0%, | ||
var(--vivid-pink) 50%, | ||
var(--electric-violet) 100% | ||
); | ||
|
||
--pill-accent: var(--bright-blue); | ||
|
||
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, | ||
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", | ||
"Segoe UI Symbol"; | ||
box-sizing: border-box; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
h1 { | ||
color: var(--white); | ||
font-size: 2rem; | ||
font-weight: 500; | ||
line-height: 3rem; | ||
letter-spacing: -0.125rem; | ||
margin: 0; | ||
font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", | ||
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", | ||
"Segoe UI Symbol"; | ||
} | ||
|
||
p { | ||
color: var(--gray-400); | ||
margin: 0; | ||
} | ||
|
||
main { | ||
width: 100%; | ||
min-height: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 1rem; | ||
box-sizing: inherit; | ||
position: relative; | ||
} | ||
|
||
.main { | ||
min-height: 95vh; | ||
min-height: 95vh; | ||
} | ||
|
||
.angular-logo { | ||
max-width: 9.2rem; | ||
} | ||
|
||
.content { | ||
display: flex; | ||
justify-content: space-around; | ||
width: 100%; | ||
max-width: 50rem; | ||
margin-bottom: 3rem; | ||
} | ||
|
||
.content h1 { | ||
margin-top: 1rem; | ||
} | ||
|
||
.content p { | ||
margin-top: 0.5rem; | ||
} | ||
|
||
.content .left-side { | ||
max-width: 65%; | ||
} | ||
|
||
.divider { | ||
width: 1px; | ||
background: var(--red-to-pink-to-purple-vertical-gradient); | ||
margin-inline: 0.5rem; | ||
} | ||
|
||
.content .right-side { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
} | ||
|
||
.pill-group { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: start; | ||
flex-wrap: wrap; | ||
gap: 2rem; | ||
} | ||
|
||
.pill { | ||
display: flex; | ||
align-items: center; | ||
--pill-accent: var(--bright-blue); | ||
background: color-mix(in srgb, var(--pill-accent) 20%, transparent); | ||
color: var(--pill-accent); | ||
padding-inline: 0.75rem; | ||
padding-block: 0.375rem; | ||
border-radius: 2.75rem; | ||
border: 0; | ||
transition: background 0.3s ease; | ||
font-family: var(--inter-font); | ||
font-size: 0.875rem; | ||
font-style: normal; | ||
font-weight: 500; | ||
line-height: 1.4rem; | ||
letter-spacing: -0.00875rem; | ||
text-decoration: none; | ||
} | ||
|
||
.pill:hover { | ||
background: color-mix(in srgb, var(--pill-accent) 15%, transparent); | ||
} | ||
|
||
.pill-group .pill:nth-child(6n + 1) { | ||
--pill-accent: var(--bright-blue); | ||
} | ||
.pill-group .pill:nth-child(6n + 2) { | ||
--pill-accent: var(--french-violet); | ||
} | ||
.pill-group .pill:nth-child(6n + 3), | ||
.pill-group .pill:nth-child(6n + 4), | ||
.pill-group .pill:nth-child(6n + 5) { | ||
--pill-accent: var(--hot-red); | ||
} | ||
|
||
.pill-group svg { | ||
margin-inline-start: 0.25rem; | ||
} | ||
|
||
.social-links { | ||
display: flex; | ||
align-items: center; | ||
gap: 0.73rem; | ||
margin-top: 1.5rem; | ||
} | ||
|
||
.social-links path { | ||
transition: fill 0.3s ease; | ||
fill: var(--gray-400); | ||
} | ||
|
||
.social-links a:hover svg path { | ||
fill: var(--gray-900); | ||
} | ||
|
||
@media screen and (max-width: 650px) { | ||
.content { | ||
flex-direction: column; | ||
width: max-content; | ||
} | ||
|
||
.divider { | ||
height: 1px; | ||
width: 100%; | ||
background: var(--red-to-pink-to-purple-horizontal-gradient); | ||
margin-block: 1.5rem; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.