mirror of
https://codeberg.org/vlw/code-export-syntax.git
synced 2025-11-05 04:22:43 +01:00
64 lines
No EOL
646 B
CSS
64 lines
No EOL
646 B
CSS
body {
|
|
min-width: 350px;
|
|
}
|
|
|
|
/* Overrides */
|
|
|
|
p,
|
|
h1,
|
|
button {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
/* Layout */
|
|
|
|
main {
|
|
button {
|
|
span {
|
|
font-style: italic;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Components */
|
|
|
|
header {
|
|
border-bottom: solid 1px aliceblue;
|
|
}
|
|
|
|
.status {
|
|
&.update .update,
|
|
&.success .success,
|
|
&.no-target .no-target {
|
|
display: block;
|
|
}
|
|
|
|
article {
|
|
border: solid 1px var(--pico-primary-border);
|
|
display: none;
|
|
|
|
&.error {
|
|
border: solid 1px salmon;
|
|
|
|
p {
|
|
color: crimson;
|
|
}
|
|
}
|
|
|
|
p {
|
|
color: var(--pico-primary-background);
|
|
|
|
& + p {
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
button {
|
|
display: none;
|
|
}
|
|
} |