2022-05-29 02:01:56 +00:00
|
|
|
@import "color-schemes.css";
|
2022-06-04 03:13:19 +00:00
|
|
|
@import "elements.css";
|
|
|
|
@import "mood.css";
|
|
|
|
/* Ughhh, there's no way to have readable CSS by using modules and Next? */
|
|
|
|
@import "components/views/content.css";
|
|
|
|
@import "components/views/landing.css";
|
|
|
|
@import "components/views/notice.css";
|
|
|
|
|
|
|
|
@import "components/icon.css";
|
|
|
|
@import "components/list-events.css";
|
|
|
|
@import "components/postcard.css";
|
2022-06-05 15:35:35 +00:00
|
|
|
@import "components/square.css";
|
2022-06-04 03:13:19 +00:00
|
|
|
@import "components/telegram-login.css";
|
2022-06-05 15:35:35 +00:00
|
|
|
@import "components/toolbar.css";
|
2022-06-04 03:13:19 +00:00
|
|
|
|
2022-05-29 02:01:56 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-06-01 16:54:59 +00:00
|
|
|
*[disabled] {
|
|
|
|
opacity: 0.2;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-06-01 14:57:19 +00:00
|
|
|
|
|
|
|
.form-monorow {
|
2022-06-01 16:54:59 +00:00
|
|
|
max-width: 600px;
|
|
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
|
2022-06-01 14:57:19 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 4px;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-06-01 16:54:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-monorow input {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-monorow input[type="submit"] {
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
|
2022-06-02 02:26:52 +00:00
|
|
|
.error-block pre {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
text-align: left;
|
2022-06-02 02:32:50 +00:00
|
|
|
}
|