41 lines
752 B
CSS
41 lines
752 B
CSS
:root {
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
button, select {
|
|
padding: 5px;
|
|
border: #cccccc solid 1px;
|
|
border-radius: 2px;
|
|
background: #e9e9ed;
|
|
}
|
|
|
|
.alert {
|
|
position: sticky;
|
|
bottom: 5px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: max-content;
|
|
|
|
background: #e9e9ed;
|
|
border: #cccccc solid 1px;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.remove {
|
|
transition: all 500ms ease-in-out;
|
|
bottom: -100px;
|
|
}
|