mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-21 20:12:15 -07:00
22 lines
327 B
CSS
22 lines
327 B
CSS
main.home {
|
|
display: grid;
|
|
gap: 2rem;
|
|
place-items: center;
|
|
align-content: center;
|
|
padding: 6rem var(--page-x);
|
|
|
|
h1 {
|
|
margin: 0;
|
|
font-size: 4rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: var(--font-size-xs);
|
|
line-height: 1;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|