This repository has been archived on 2023-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
mainpage/static/style/home.css

63 lines
1.0 KiB
CSS
Raw Normal View History

2023-08-24 11:13:06 +00:00
body {
background: #191c2e;
}
main {
position: absolute;
padding: 0;
margin-left: 32px;
margin-right: 32px;
margin-top: 86px;
width: calc(100% - 86px);
height: calc(100% - 150px);
border: 4px solid #690455;
border-radius: 12px;
}
.content {
margin: 12px;
height: calc(100% - 48px);
width: calc(100% - 24px);
}
#content-boxes {
columns: 3;
height: 100%;
display: flex;
list-style: none;
}
.content-box {
background: #21253c;
border: 4px solid #690455;
border-radius: 12px;
margin-right: 32px;
2023-08-24 12:38:54 +00:00
width: calc(100% / 3);
2023-08-24 11:13:06 +00:00
height: auto;
position: relative;
display: inline-block;
padding: 16px;
}
.content-box-heading {
font-family: Roboto;
font-weight: bold;
font-size: 24px;
color: #FFFFFF;
text-align: center;
width: 100%;
}
2023-08-24 12:38:54 +00:00
.content-box-data {
2023-08-24 11:13:06 +00:00
font-family: Roboto;
font-size: 18px;
color: #FFFFFF;
text-align: center;
width: 100%;
2023-08-24 12:38:54 +00:00
}
.content-box-data ul {
margin: 0;
padding: 0;
list-style: none;
2023-08-24 11:13:06 +00:00
}