18 lines
216 B
CSS
18 lines
216 B
CSS
:root {
|
|
--primary: #fd5e53;
|
|
}
|
|
|
|
body {
|
|
padding: 50px;
|
|
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: #00B7FF;
|
|
}
|
|
|
|
footer {
|
|
border-top: 1px solid var(--primary);
|
|
margin-top: 1rem;
|
|
}
|