website/assets/css/main.css

30 lines
388 B
CSS
Raw Permalink Normal View History

2024-03-05 22:12:46 +00:00
:root {
--color-primary: #00A0E4;
}
2024-03-05 16:50:01 +00:00
body {
margin: 0;
padding: 0em;
height: 100%;
}
.content {
display: flex;
flex-direction: column;
2024-03-06 15:06:08 +00:00
padding: 1em;
2024-03-05 16:50:01 +00:00
}
div.notice {
padding: 1em;
width: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
div.notice p {
margin: 0;
2024-03-06 14:19:33 +00:00
}