37 lines
628 B
CSS
37 lines
628 B
CSS
:root {
|
|
--spacing-s: 4px;
|
|
--spacing-m: 8px;
|
|
--shadow-shallow: 2px 2px 1px;
|
|
}
|
|
|
|
body {
|
|
background-color: hsl(0, 0%, 95%);
|
|
font-family: Ariel, sans-serif;
|
|
}
|
|
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: space-between;
|
|
border: 1px solid black;
|
|
box-shadow: var(--shadow-shallow);
|
|
border-radius: var(--spacing-s);
|
|
padding: var(--spacing-m);
|
|
}
|
|
|
|
.card > h1 {
|
|
margin: 0px;
|
|
}
|
|
|
|
.card > * {
|
|
margin-top: var(--spacing-s);
|
|
margin-bottom: var(--spacing-s);
|
|
}
|
|
|
|
.login-form {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|