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

20 lines
290 B
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";
2022-06-11 03:08:49 +00:00
@import "flex.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-09 21:57:17 +00:00
*[disabled],
.disabled {
opacity: 0.4;
2022-06-01 16:54:59 +00:00
cursor: not-allowed;
2022-06-09 21:57:17 +00:00
}