30 lines
609 B
CSS
30 lines
609 B
CSS
/* The style.css convention: bankai's client entry imports this file
|
|||
|
|
automatically (CSS is a client concern — server code never sees it),
|
||
|
|
Vite extracts and hashes it, and the server preloads it via Early
|
||
|
|
Hints. The v8 answer to sheetify. */
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: system-ui, sans-serif;
|
||
|
|
max-width: 36rem;
|
||
|
|
margin: 4rem auto;
|
||
|
|
padding: 0 1rem;
|
||
|
|
line-height: 1.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: 1.6rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
button {
|
||
|
|
font: inherit;
|
||
|
|
padding: 0.4rem 1.2rem;
|
||
|
|
border: 2px solid currentColor;
|
||
|
|
border-radius: 4px;
|
||
|
|
background: transparent;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
button:hover {
|
||
|
|
background: #ffc0cb55;
|
||
|
|
}
|