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/index.css

96 lines
1.5 KiB
CSS

body {
background: #191c2e;
}
.tabs li {
display: inline-block;
padding-left: 2px;
}
.tabs li a {
position: relative;
}
.tab-svg-path {
position: absolute;
fill: #21253c;
stroke: #690455;
stroke-width: 4;
stroke-miterlimit: 10;
pointer-events: all;
}
.tab-svg-text {
fill: #FFFFFF;
font-family: "Roboto";
font-size: 18px;
text-anchor: middle;
}
#tabs-main {
float: left;
margin-left: 32px;
padding: 0;
list-style: none;
}
#tabs-account {
float: right;
margin-right: 32px;
padding: 0;
list-style: none;
}
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;
width: auto;
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%;
}
.content-box-paragraph {
font-family: Roboto;
font-size: 18px;
color: #FFFFFF;
text-align: center;
width: 100%;
}