60 lines
1.0 KiB
CSS
60 lines
1.0 KiB
CSS
|
.body {
|
||
|
|
||
|
}
|
||
|
.page_wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
align-content: center;
|
||
|
text-align: center;
|
||
|
padding-bottom: 5em;
|
||
|
background-color: red;
|
||
|
}
|
||
|
.center_wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
text-align: center;
|
||
|
background-color: blue;
|
||
|
}
|
||
|
.container_list {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
text-align: center;
|
||
|
background-color: yellow;
|
||
|
}
|
||
|
.table_headers, .line {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background-color: green;
|
||
|
}
|
||
|
.header, .status {
|
||
|
font-weight: bold;
|
||
|
border-width: 1px;
|
||
|
border-style: solid;
|
||
|
background-color: violet;
|
||
|
}
|
||
|
.table_content {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
text-align: center;
|
||
|
background-color: cyan;
|
||
|
}
|
||
|
.status {
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
.container_log {
|
||
|
|
||
|
}
|
||
|
.button {
|
||
|
font-weight: bold;
|
||
|
}
|