mirror of
https://codeberg.org/vlw/code-export-syntax.git
synced 2025-11-04 20:12:42 +01:00
60 lines
779 B
CSS
60 lines
779 B
CSS
* {
|
|
--padding: 25px;
|
|
--anim-duration: 200ms;
|
|
|
|
color: inherit;
|
|
margin: 0;
|
|
box-sizing: inherit;
|
|
font-family: inherit;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
box-sizing: border-box;
|
|
min-height: 100svh;
|
|
font-family: Consolas;
|
|
background-color: #1f1f1f;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
|
|
* {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
/* Overrides */
|
|
|
|
.pico {
|
|
input[type="text"],
|
|
input[type="number"] {
|
|
height: 40px !important;
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
summary,
|
|
textarea,
|
|
input[type="text"],
|
|
input[type="number"] {
|
|
font-size: 15px !important;
|
|
}
|
|
|
|
button {
|
|
height: 53px !important;
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
details {
|
|
&::after {
|
|
top: -7px !important;
|
|
position: relative !important;
|
|
}
|
|
}
|
|
|
|
fieldset {
|
|
&:last-child {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
}
|
|
}
|