56 lines
925 B
CSS
56 lines
925 B
CSS
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
overflow-x: clip;
|
|
scrollbar-gutter: stable;
|
|
background-color: var(--color-bg);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
#root {
|
|
/* min-height: 100vh; */
|
|
padding-bottom: 2rem;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
a {
|
|
font-weight: 500;
|
|
color: var(--color-link);
|
|
text-decoration: inherit;
|
|
}
|
|
a:hover {
|
|
color: var(--color-link-hover);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3.2em;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
button {
|
|
border-radius: 8px;
|
|
border: 1px solid var(--color-border);
|
|
padding: 0.6em 1.2em;
|
|
font-size: 1em;
|
|
font-weight: 500;
|
|
font-family: inherit;
|
|
background-color: var(--color-surface);
|
|
cursor: pointer;
|
|
transition: border-color 0.25s, background-color 0.2s;
|
|
}
|
|
button:hover {
|
|
border-color: var(--color-accent);
|
|
}
|
|
button:focus,
|
|
button:focus-visible {
|
|
outline: 4px auto -webkit-focus-ring-color;
|
|
}
|