Created
August 1, 2020 00:57
-
-
Save LoboAdrian/f4ed220bb621c875ccb87b66631df9fd to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
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
:root { | |
--colors-one: #9be9a8; | |
--colors-two: #40c463; | |
--colors-three: #30a14e; | |
--colors-four: #216e39; | |
} | |
| |
@media (prefers-color-scheme: dark) { | |
:root { | |
--colors-text: var(--colors-white); | |
--colors-background: var(--colors-darker); | |
--colors-sheet: var(--colors-darkless); | |
--colors-elevated: var(--colors-darkless); | |
--colors-sunken: var(--colors-darker); | |
} | |
} | |
| |
.nav { | |
padding: 0 16px; | |
display: flex; | |
align-items: center; | |
width: 100%; | |
} | |
.nav-link { | |
margin-left: 16px; | |
color: var(--colors-muted); | |
text-decoration: none; | |
transition: 0.125s color ease-in-out; | |
} | |
.nav-link:hover, | |
.nav-link:focus { | |
color: var(--colors-cyan); | |
} | |
.nav-link-home { | |
font-weight: bold; | |
text-transform: uppercase; | |
letter-spacing: 0.03em; | |
margin-right: auto; | |
font-size: 20px; | |
-webkit-text-fill-color: currentColor; | |
} | |
.nav-link-about { | |
margin-left: auto; | |
} | |
.nav-link-github { | |
line-height: 0; | |
} | |
| |
.container { | |
max-width: 72rem; | |
padding: 1rem 1rem 2rem; | |
margin: auto; | |
} | |
| |
.header { | |
display: grid; | |
grid-gap: 16px; | |
width: 100%; | |
} | |
| |
@media (min-width: 48em) { | |
.nav { | |
padding: 0 32px; | |
} | |
| |
.nav-link-home { | |
margin-left: 12px; | |
} | |
| |
.header { | |
grid-template-columns: repeat(3, 1fr); | |
} | |
} | |
| |
@media (max-width: 32em) { | |
.header { | |
margin-bottom: 16px; | |
} | |
| |
.header-col-1 { | |
display: flex; | |
align-items: center; | |
margin-top: 24px; | |
} | |
} | |
| |
.header-title-avatar { | |
border-radius: 64px; | |
margin-right: 16px; | |
} | |
.header-title-name { | |
margin: 0; | |
flex: 1 1 auto; | |
font-size: 48px; | |
line-height: 1; | |
word-break: break-all; | |
word-wrap: break-word; | |
} | |
| |
.badge { | |
background-color: cyan; | |
color: slateblue; | |
display: inline-flex; | |
align-items: center; | |
font-weight: bold; | |
border-radius: 999px; | |
text-align: center; | |
white-space: nowrap; | |
} | |
| |
.header-streak { | |
padding: 4px 16px 4px 0; | |
margin: 8px 12px 8px 0; | |
max-height: 28px; | |
} | |
.header-streak-zero { | |
display: none; | |
} | |
| |
.header-content { | |
display: flex; | |
align-items: center; | |
flex-wrap: wrap; | |
} | |
.header-links { | |
display: flex; | |
align-items: center; | |
} | |
.header-link { | |
color: var(--colors-blue); | |
transition: 0.125s color ease-in-out; | |
padding-right: 8px; | |
line-height: 0; | |
} | |
.header-link:hover, | |
.header-link:focus { | |
color: var(--colors-cyan); | |
} | |
.header-content audio { | |
margin-top: 6px; | |
margin-bottom: 12px; | |
} | |
| |
.header-chart svg { | |
max-width: 100%; | |
max-height: 266px; | |
overflow-y: hidden; | |
} | |
| |
.react-calendar-heatmap text { | |
fill: var(--colors-muted); | |
font-size: 6px; | |
} | |
.react-calendar-heatmap .color-empty { | |
fill: var(--colors-sheet); | |
} | |
.react-calendar-heatmap .color-1 { | |
fill: var(--colors-one); | |
} | |
.react-calendar-heatmap .color-2 { | |
fill: var(--colors-two); | |
} | |
.react-calendar-heatmap .color-3 { | |
fill: var(--colors-three); | |
} | |
.react-calendar-heatmap .color-4 { | |
fill: var(--colors-four); | |
} | |
| |
.mention { | |
display: inline-flex; | |
align-items: baseline; | |
text-decoration: none; | |
} | |
.mention-avatar { | |
border-radius: 50%; | |
margin-right: 4px; | |
align-self: flex-end; | |
} | |
| |
.headline, | |
.header-webring h2 { | |
color: var(--colors-muted); | |
letter-spacing: 0.08em; | |
text-transform: uppercase; | |
} | |
.header-webring-mentions { | |
display: grid; | |
grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment