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";
|
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 {
|
2022-07-18 04:07:13 +00:00
|
|
|
opacity: 0.4;
|
2022-06-01 16:54:59 +00:00
|
|
|
cursor: not-allowed;
|
2022-06-09 21:57:17 +00:00
|
|
|
}
|