mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 13:54:25 +00:00
19 lines
262 B
CSS
19 lines
262 B
CSS
:root {
|
|
--border-color: #a0a0a0;
|
|
--border-radius: 1rem;
|
|
--space: 1rem;
|
|
--primary-color: #1677ff;
|
|
--dark-primary-color: #003eb3;
|
|
}
|
|
|
|
body {
|
|
padding: var(--space);
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
h1,
|
|
p {
|
|
margin-block: 0.25rem;
|
|
}
|