@lucsoft/webgen
Version:
Collection of lucsofts Components
50 lines (49 loc) • 1.14 kB
CSS
form .choise span.element {
display: block;
font-size: 1.8rem;
padding: .4rem 0;
}
form span.title {
font-size: 2.4rem;
font-weight: 200;
}
form .choise span.element.active::before {
box-shadow: inset 0 0 0px 3px #3e3e3e;
background: white;
}
form .choise span.element::before {
width: 1.2rem;
height: 1.2rem;
display: inline-block;
border-radius: 1rem;
content: ' ';
margin-right: 1rem;
border: .1rem solid;
background: #ffffff00;
transition: all 250ms ease;
box-shadow: inset 0 0 0px 3px #3e3e3e00;
}
.loading-wheel {
position: absolute;
top: 50%;
left: 50%;
width: 57px;
height: 57px;
transform: translate(-50%, -50%) rotate(-90deg);
animation: loadAnimation 800ms cubic-bezier(0, 0, 0.2, 1) infinite;
display: none;
}
.loading-wheel circle {
stroke: var(--on-card-text);
}
.loading-wheel circle {
stroke-dashoffset: 58px;
stroke-dasharray: 83px;
r: 12px;
r: 12;
stroke-width: 4px;
}
.loading > .loading-wheel {
display: block;
}
@keyframes loadAnimation { to {transform: translate(-50%, -50%)rotate(270deg);}}