Files
homepage/cal/index.css

48 lines
1.1 KiB
CSS

body { display: none; }
.bounding-box {
border: solid 1px rgb(222, 226, 230);
border-radius: 10px;
padding: 10px;
margin-top: 10px;
height: 96vh;
overflow-y: scroll;
overflow-x: clip;
}
.selection td {
background-color: darkgrey;
color: white;
}
.tt {
font-family: monospace;
}
.modal-form-background {
background-color: white;
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
opacity: 0.8;
display: flex;
}
.modal-form {
background-color: transparent;
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
z-index: 3;
}
.modal-form-body {
background-color: #fff; /* optional: distinguish it */
padding: 2rem; /* optional: add spacing */
border-radius: 8px; /* optional: rounded corners */
box-shadow: 0 0 10px rgba(0,0,0,0.2); /* optional: subtle shadow */
opacity: 1;
z-index: 4;
}