2022-05-29 02:01:56 +00:00
|
|
|
@import "color-schemes.css";
|
|
|
|
@import "page-tweaks.css";
|
|
|
|
|
2022-05-28 03:45:05 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
2022-05-27 00:46:30 +00:00
|
|
|
}
|
|
|
|
|
2022-05-28 03:45:05 +00:00
|
|
|
*::selection {
|
|
|
|
background-color: var(--selection);
|
|
|
|
color: var(--foreground);
|
|
|
|
text-shadow: none;
|
2022-05-27 00:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2022-05-24 10:08:02 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2022-05-27 00:46:30 +00:00
|
|
|
|
|
|
|
background-color: var(--background);
|
|
|
|
|
|
|
|
color: var(--foreground);
|
2022-05-28 03:45:05 +00:00
|
|
|
font-family: sans-serif;
|
2022-05-27 00:46:30 +00:00
|
|
|
text-shadow: 1px 1px 1px var(--background);
|
2022-05-29 02:01:56 +00:00
|
|
|
|
|
|
|
min-height: 100vh;
|
2022-05-20 11:59:24 +00:00
|
|
|
}
|
|
|
|
|
2022-05-29 02:01:56 +00:00
|
|
|
hgroup > * {
|
2022-05-25 15:03:53 +00:00
|
|
|
margin: 0;
|
2022-05-29 02:01:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
2022-05-27 00:46:30 +00:00
|
|
|
text-shadow: 2px 2px 2px var(--background);
|
2022-05-25 15:03:53 +00:00
|
|
|
}
|
|
|
|
|
2022-05-27 00:46:30 +00:00
|
|
|
a {
|
|
|
|
color: var(--anchor);
|
|
|
|
}
|
2022-05-25 15:50:31 +00:00
|
|
|
|
2022-05-27 00:46:30 +00:00
|
|
|
a:visited {
|
|
|
|
color: var(--anchor-visited);
|
|
|
|
}
|
2022-05-25 15:50:31 +00:00
|
|
|
|
2022-05-27 00:46:30 +00:00
|
|
|
a:active {
|
|
|
|
color: var(--anchor-active);
|
|
|
|
}
|
2022-05-25 15:50:31 +00:00
|
|
|
|
2022-05-29 02:01:56 +00:00
|
|
|
.positive {
|
|
|
|
color: var(--positive);
|
|
|
|
}
|
|
|
|
|
|
|
|
.negative {
|
|
|
|
color: var(--negative);
|
|
|
|
}
|
|
|
|
|
2022-05-27 00:46:30 +00:00
|
|
|
input, button {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
color: var(--foreground);
|
2022-05-28 03:45:05 +00:00
|
|
|
background-color: var(--interactable);
|
2022-05-27 00:46:30 +00:00
|
|
|
|
|
|
|
border-width: 2px;
|
|
|
|
border-color: var(--border);
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
|
|
font-size: medium;
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
vertical-align: middle;
|
2022-05-20 11:59:24 +00:00
|
|
|
}
|
2022-05-24 10:08:02 +00:00
|
|
|
|
2022-05-27 00:46:30 +00:00
|
|
|
input[type="text"] {
|
|
|
|
border-style: inset;
|
|
|
|
}
|
2022-05-25 15:50:31 +00:00
|
|
|
|
2022-05-27 00:46:30 +00:00
|
|
|
input[type="submit"], button {
|
|
|
|
border-style: outset;
|
2022-05-29 03:00:48 +00:00
|
|
|
text-align: center;
|
2022-05-27 00:46:30 +00:00
|
|
|
}
|
2022-05-25 15:50:31 +00:00
|
|
|
|
2022-05-27 00:46:30 +00:00
|
|
|
input[type="submit"]:active, button:active {
|
|
|
|
border-style: inset;
|
|
|
|
}
|
2022-05-25 15:50:31 +00:00
|
|
|
|
2022-05-29 02:01:56 +00:00
|
|
|
.square-40 {
|
2022-05-27 00:46:30 +00:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2022-05-24 16:55:21 +00:00
|
|
|
}
|
2022-05-27 00:46:30 +00:00
|
|
|
|
2022-05-29 02:01:56 +00:00
|
|
|
input.positive, button.positive {
|
2022-05-27 00:46:30 +00:00
|
|
|
border-color: var(--positive);
|
|
|
|
}
|
|
|
|
|
2022-05-29 02:01:56 +00:00
|
|
|
input.negative, button.negative {
|
2022-05-27 00:46:30 +00:00
|
|
|
border-color: var(--negative);
|
2022-05-28 03:45:05 +00:00
|
|
|
}
|
|
|
|
|
2022-05-29 02:01:56 +00:00
|
|
|
.page {
|
|
|
|
min-height: 100vh;
|
2022-05-29 03:00:48 +00:00
|
|
|
padding: 12px;
|
2022-05-29 02:01:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container-btn-telegram > div {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.postcard {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
|
|
|
|
user-select: none;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|