64 lines
878 B
CSS
64 lines
878 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
:root {
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 400;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
.page {
|
|
margin: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.stretch {
|
|
width: 100%;
|
|
}
|
|
|
|
.logo {
|
|
height: 6em;
|
|
padding: 1.5em;
|
|
will-change: filter;
|
|
transition: 0.75s;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
a {
|
|
font-weight: 500;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
input,
|
|
button {
|
|
border-radius: 2px;
|
|
border: 1px solid transparent;
|
|
padding: 0.5em 1.2em;
|
|
font-size: 1em;
|
|
font-weight: 500;
|
|
font-family: inherit;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
input,
|
|
button {
|
|
outline: none;
|
|
}
|