centralex/web/main.css
2023-06-11 06:44:14 +02:00

50 lines
541 B
CSS

body {
background-color: #eee;
}
#connected_box {
position: absolute;
top: 5%;
right: 5%;
width: 5%;
height: 5%;
}
#free_ports,
#last_change {
display: inline-block;
}
#free_ports {
margin-right: 10%;
}
td,
th {
border: 1px solid black;
padding: 0.5em;
}
table {
border-spacing: 0;
}
.number {
text-align: right;
}
.text {
text-align: left;
}
.visible {
opacity: 1;
transition: opacity 500ms linear;
}
.hidden {
opacity: 0.2;
transition: opacity 6000ms linear;
}