Files
Submissions-App/src/submissions/templates/css/styles.css
2025-06-04 07:18:21 -05:00

149 lines
2.4 KiB
CSS

/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
font-size: large;
}
.data-link {
color: blue;
text-decoration: underline;
text-decoration-color: blue;
}
.data-link:hover {
color: #ff33ff;
text-decoration-color: #ff33ff;
cursor: pointer;
}
div.procedure_creation_leftright {
width:100%;
overflow:auto;
border-style: solid;
border-width: 2px;
background-color: #FFFFFF;
display: flex;
}
div.procedure_creation_leftright div.left {
height: 100%;
width:15%;
float:left;
border-style: solid;
border-width: 1px;
background-color: #FFF4A3;
padding: 5px;
flex: 0.25;
}
div.procedure_creation_leftright div.right {
height: 100%;
width:84%;
float:left;
border-style: solid;
border-width: 1px;
background-color:#D9EEE1;
padding: 5px;
flex: 0.75;
object-fit: contain;
}
.dropdown {
width: 100%;
}
.form_text {
width: 97%;
}
div.gallery {
width: 100%;
object-fit: contain;
}
.context-menu {
display: none;
flex-direction: column;
align-items: flex-start;
width: 150px;
margin: 32px;
position: absolute;
}
.context-menu--active {
display: block;
z-index: 10;
background-color: white;
border: 2px solid black;
padding: 5px;
}
.plate {
display: inline-grid;
grid-auto-flow: column;
place-content: center center;
grid-gap: 2px;
}
.well {
border: 1px solid #000;
padding: 20px;
display: flex;
text-align: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
cursor: move;
}
.well:hover {
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}
.grid-item p {
max-width: 100%;
border-radius: 8px;
}
ul.no-bullets {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
margin: 0; /* Remove margins */
}
.negativecontrol {
background-color: cyan;
}
.positivecontrol {
background-color: pink;
}