22 lines
418 B
CSS
22 lines
418 B
CSS
body {
|
|
margin: 0; /* Remove body margins */
|
|
background-color: rgb(250, 248, 248);
|
|
}
|
|
|
|
.page-container {
|
|
padding-top: 90px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.admin-page-container {
|
|
padding-top: 40px;
|
|
padding-left: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: stretch;
|
|
}
|