Files
brk/website_next/home/style.css
T
2026-06-07 13:10:23 +02:00

41 lines
690 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;
a {
display: block;
padding: 0.75rem 1rem;
border-radius: 0.3125rem;
color: var(--white);
background: var(--gray);
text-decoration: none;
&:hover {
color: var(--black);
background: var(--white);
}
&:active {
color: var(--black);
background: var(--orange);
}
}
}
}