106 lines
1.3 KiB
CSS
106 lines
1.3 KiB
CSS
.header-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 10px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.header-container-title {
|
|
flex-grow: 1;
|
|
text-align: left;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.disk-usage-info {
|
|
display: flex;
|
|
justify-content: start;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
p {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.dashboard {
|
|
padding: 0.5rem 0.5rem 0.5rem 1rem;
|
|
}
|
|
|
|
.disk-usage-container {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.disk-usage {
|
|
flex: 2;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.services-status {
|
|
flex: 1;
|
|
}
|
|
|
|
.services-status ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.services-status li {
|
|
margin: 5px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.status-led {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.status-led.active {
|
|
background-color: green;
|
|
}
|
|
|
|
.status-led.inactive {
|
|
background-color: red;
|
|
}
|
|
|
|
.installed-oglives {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
}
|
|
|
|
th {
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
.button-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
/* Espacio entre botones */
|
|
margin-top: 50px;
|
|
}
|
|
|
|
|
|
|
|
.btn:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.btn:last-child {
|
|
margin-right: 0;
|
|
} |