mirror of
https://codeberg.org/vlw/code-export-syntax.git
synced 2025-11-05 04:22:43 +01:00
22 lines
No EOL
327 B
CSS
22 lines
No EOL
327 B
CSS
body {
|
|
display: grid;
|
|
align-items: center;
|
|
justify-items: center;
|
|
}
|
|
|
|
main {
|
|
width: 100%;
|
|
border: solid 1px #373c44;
|
|
padding: var(--padding);
|
|
max-width: 700px;
|
|
border-radius: 6px;
|
|
background-color: #181818;
|
|
|
|
textarea {
|
|
--height: 250px;
|
|
|
|
height: var(--height);
|
|
min-height: var(--height);
|
|
max-height: 70svh;
|
|
}
|
|
} |