150 lines
2.5 KiB
CSS
150 lines
2.5 KiB
CSS
.btnPDF {
|
|
border-radius: 50%;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
border: 2px solid #00838F;
|
|
z-index: 99999;
|
|
}
|
|
.btnGen {
|
|
border-radius: 50%;
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border: 5px solid #00838F;
|
|
z-index: 99999;
|
|
}
|
|
.btnDelete {
|
|
border-radius: 50%;
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border: 5px solid #00838F;
|
|
z-index: 99999;
|
|
background: #B71C1C;
|
|
/*transform: translate(@xDelta, -@yDelta);*/
|
|
}
|
|
.btnClone {
|
|
border-radius: 50%;
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border: 5px solid #00838F;
|
|
z-index: 99999;
|
|
background: #FFF;
|
|
/*transform: translate(1.6rem, -1rem);*/
|
|
}
|
|
.btnPDFSuccess {
|
|
border-radius: 50%;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
border: 2px solid #00838F;
|
|
z-index: 99999;
|
|
background: #8E44AD;
|
|
}
|
|
.btnPDFPending {
|
|
border-radius: 50%;
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border: 5px solid #00838F;
|
|
z-index: 99999;
|
|
background: #F1C40F;
|
|
}
|
|
.btnPDFSuccess > i {
|
|
font-size: 0.8rem;
|
|
}
|
|
.btnHighlight {
|
|
border-radius: 50%;
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border: 5px solid #00838F;
|
|
z-index: 99999;
|
|
background: #03A9F4;
|
|
transform: translate(10.3rem, -8rem);
|
|
}
|
|
.btnCancel {
|
|
border-radius: 50%;
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border: 5px solid #00838F;
|
|
z-index: 99999;
|
|
background: var(--colorCode);
|
|
}
|
|
.btnSave {
|
|
border-radius: 50%;
|
|
width: 3.5rem;
|
|
height: 3.5rem;
|
|
border: 5px solid #00838F;
|
|
z-index: 99999;
|
|
background: var(--colorCode);
|
|
}
|
|
.btnHeadTail {
|
|
width: 100%;
|
|
padding: 0.8rem 0 0.8rem 0;
|
|
background: none;
|
|
border: none;
|
|
}
|
|
.btnConfirm {
|
|
width: 100%;
|
|
padding: 0.8rem 0 0.8rem 0;
|
|
background: none;
|
|
border: none;
|
|
border-bottom: 3px solid black;
|
|
}
|
|
.btnHead {
|
|
width: 100%;
|
|
padding: 0.8rem 0 0.8rem 0;
|
|
background: none;
|
|
border: none;
|
|
}
|
|
.borderTop {
|
|
border-top: 7px solid #00838F;
|
|
}
|
|
.borderBottom {
|
|
border-bottom: 7px solid #00838F;
|
|
width: 100%;
|
|
}
|
|
.modal-dialog {
|
|
overflow-y: initial !important;
|
|
}
|
|
.modal-body {
|
|
height: 18.75rem;
|
|
overflow-y: auto;
|
|
}
|
|
.testata {
|
|
width: 100%;
|
|
}
|
|
select,
|
|
input {
|
|
border: none;
|
|
border-bottom: 2px solid black;
|
|
background: none;
|
|
height: 2rem;
|
|
}
|
|
i {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
font-size: 1.1rem;
|
|
}
|
|
.blue {
|
|
background: #3652D9;
|
|
}
|
|
.grey {
|
|
background: #7F8C8D;
|
|
opacity: 50%;
|
|
}
|
|
.circle {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border-radius: 50%;
|
|
box-shadow: 0px 0px 1px 1px #0000001a;
|
|
}
|
|
.pulse {
|
|
animation: pulse-animation 2s infinite;
|
|
}
|
|
@keyframes pulse-animation {
|
|
0% {
|
|
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
|
|
}
|
|
100% {
|
|
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
|
|
}
|
|
} |