1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/styles/globals.css

65 lines
1.1 KiB
CSS
Raw Normal View History

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-06-05 21:03:48 +00:00
main {
2022-05-29 02:01:56 +00:00
min-height: 100vh;
2022-06-05 21:03:48 +00:00
padding: 8px;
2022-05-29 02:01:56 +00:00
}
.form-monorow {
2022-06-01 16:54:59 +00:00
max-width: 600px;
margin-left: auto;
margin-right: auto;
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
}