id/styles/global.css

24 lines
385 B
CSS
Raw 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 {
content: "Development: Subject To Change";
position: fixed;
top: 4.5rem;
right: -1rem;
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
}