centralex/web/main.css
2023-06-11 06:30:31 +02:00

40 lines
442 B
CSS

body {
background-color: #eee;
}
#connected_box {
position: absolute;
top: 5%;
right: 5%;
width: 5%;
height: 5%;
}
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;
}