78 lines
1.4 KiB
CSS
78 lines
1.4 KiB
CSS
.tableContainer {
|
|
overflow-y: auto;
|
|
overflow-x: auto;
|
|
border-radius: 4px;
|
|
max-height: 430px;
|
|
scrollbar-color: rgb(1, 92, 184) rgba(0, 0, 0, 0);
|
|
width: 100%;
|
|
}
|
|
|
|
.disponible {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: green;
|
|
color: green;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ocupado {
|
|
background-color: #54bbfc !important;
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.actions {
|
|
text-align: center;
|
|
}
|
|
|
|
.resetButton {
|
|
padding: 8px 16px;
|
|
background-color: #ff4d4d;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.resetButton:hover {
|
|
background-color: #cc0000;
|
|
}
|
|
|
|
.WINDOWS::before {
|
|
content: "";
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-image: url("/windows.png");
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
margin-right: 6px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.MACINTOSH::before {
|
|
content: "";
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-image: url("/apple.png");
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
margin-right: 6px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.PROFESORES::before {
|
|
content: "";
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-image: url("/teacher.png");
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
margin-right: 6px;
|
|
vertical-align: middle;
|
|
} |