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";
|
2022-06-06 00:08:12 +00:00
|
|
|
@import "components/views/event.css";
|
2022-06-04 03:13:19 +00:00
|
|
|
|
|
|
|
@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-06 00:08:12 +00:00
|
|
|
@import "components/form-monorow.css";
|
|
|
|
@import "components/error.css";
|
2022-06-06 01:15:44 +00:00
|
|
|
@import "components/form-daterange.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-06 01:15:44 +00:00
|
|
|
*[disabled], .disabled {
|
2022-06-01 16:54:59 +00:00
|
|
|
opacity: 0.2;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|