website/assets/css/shells/document.css
Victor Westerlund 8ae67a86d8 feat: initial code commit (#1)
Placeholder website until the real thing is ready

Reviewed-on: https://codeberg.org/reflect/website/pulls/1
Co-authored-by: Victor Westerlund <victor.vesterlund@gmail.com>
Co-committed-by: Victor Westerlund <victor.vesterlund@gmail.com>
2024-09-27 16:13:44 +00:00

55 lines
No EOL
814 B
CSS

:root {
--primer-color-reflect: 220, 26, 0;
--color-reflect: rgb(var(--primer-color-reflect));
--padding: 20px;
}
html,
body {
width: 100%;
height: 100svh;
}
body {
display: grid;
align-items: center;
justify-items: center;
background-color: rgba(var(--primer-color-reflect), .1);
}
* {
margin: 0;
fill: inherit;
color: inherit;
font-family: monospace;
}
h1 {
font-size: 30px;
letter-spacing: .1em;
}
p {
font-size: 17px;
}
button {
width: 100%;
color: var(--color-reflect);
padding: 10px 15px;
border: solid 1px var(--color-reflect);
background-color: transparent;
border-radius: 4px;
cursor: pointer;
}
button.solid {
color: white;
background-color: var(--color-reflect);
}
button:hover {
color: var(--color-reflect);
background-color: rgba(var(--primer-color-reflect), .1);
}