36 lines
731 B
CSS
36 lines
731 B
CSS
.admin-start-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: start;
|
|
align-items: center;
|
|
gap: 50px;
|
|
|
|
width: 100%;
|
|
height: 50vh;
|
|
}
|
|
.admin-start-welcome-message {
|
|
font-size: 18px;
|
|
text-align: start;
|
|
width: 90%;
|
|
font-family: Source Sans Pro;
|
|
}
|
|
.admin-start-page-loads-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 90%;
|
|
}
|
|
|
|
.admin-start-page-loads-label {
|
|
font-family: Source Sans Pro;
|
|
font-size: 16px;
|
|
text-align: start;
|
|
font-weight: 200;
|
|
}
|
|
.admin-start-page-loads-amount {
|
|
font-family: Source Sans Pro;
|
|
font-size: 22px;
|
|
text-align: end;
|
|
font-weight: 800;
|
|
} |