thsf.net/maintenance/style/maintenance.css

65 lines
1.1 KiB
CSS
Raw Normal View History

2023-05-27 05:25:10 +02:00
.body {
2023-05-27 07:46:59 +02:00
font-size: 2em;
2023-05-27 07:31:50 +02:00
font-family: Arial, Helvetica, sans-serif;
2023-05-27 05:25:10 +02:00
}
.page_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
text-align: center;
background-color: red;
}
.center_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: blue;
2023-05-27 07:31:50 +02:00
2023-05-27 05:25:10 +02:00
}
.container_list {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
2023-05-27 07:46:59 +02:00
width: 30em;
2023-05-27 05:25:10 +02:00
background-color: yellow;
}
.table_headers, .line {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: green;
2023-05-27 07:31:50 +02:00
2023-05-27 05:25:10 +02:00
}
.header, .status {
font-weight: bold;
border-width: 1px;
border-style: solid;
background-color: violet;
2023-05-27 07:31:50 +02:00
width: 10em;
2023-05-27 05:25:10 +02:00
}
.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;
2023-05-27 05:47:39 +02:00
cursor: pointer;
2023-05-27 05:25:10 +02:00
}