id/styles/global.css

24 lines
356 B
CSS
Raw Permalink Normal View History

2023-06-07 20:40:38 +01:00
@import url(./types.css);
@import url(./design.css);
@import url(./layout.css);
2023-10-31 18:43:21 +00:00
@import url(./colours.css);
2023-06-07 20:40:38 +01:00
* {
box-sizing: border-box;
2023-11-11 16:16:04 +00:00
}
body::after {
2024-03-02 12:41:57 +00:00
content: "BETA";
2023-11-11 16:16:04 +00:00
position: fixed;
2024-03-02 12:41:57 +00:00
top: 5rem;
right: 1rem;
2023-11-11 16:16:04 +00:00
text-align: right;
font-size: 2.5rem;
font-weight: bolder;
opacity: 0.3;
2023-11-06 16:38:18 +00:00
2023-11-11 16:16:04 +00:00
transform: rotate(15deg);
2023-06-07 20:40:38 +01:00
}