2022-05-03 23:59:38 +03:00
|
|
|
@import "../config/_main.scss";
|
2021-09-05 02:21:11 +03:00
|
|
|
|
2022-03-18 21:42:10 +02:00
|
|
|
:root {
|
|
|
|
color-scheme: dark;
|
|
|
|
}
|
2021-09-05 02:21:11 +03:00
|
|
|
|
2023-04-06 01:55:01 +03:00
|
|
|
*, *::before, *::after {
|
2022-07-04 02:12:43 +03:00
|
|
|
-webkit-box-sizing: border-box;
|
2021-09-05 02:21:11 +03:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
font-family: $font_default;
|
|
|
|
color: $default_content_colour;
|
2021-11-01 20:05:35 +02:00
|
|
|
|
2023-04-06 01:55:01 +03:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
2021-09-05 02:21:11 +03:00
|
|
|
background-color: $bg_colour;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.iframe {
|
|
|
|
width: 50%;
|
|
|
|
min-width: 300px;
|
|
|
|
max-width: 1000px;
|
|
|
|
}
|
2022-07-23 16:02:50 +03:00
|
|
|
|
|
|
|
.upload * {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload button {
|
|
|
|
padding: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload button[disabled] {
|
|
|
|
color: darkgray;
|
|
|
|
}
|