openscad-remote/tools/css/custom.css

54 lines
639 B
CSS

.inputfile {
width: 0px;
height: 0px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.inputfile + label {
display: block;
cursor: pointer;
}
.h6 {
height: 32rem;
}
.disabled div {
opacity: 40%;
}
.idealgray {
color: #545454;
}
.f1.shadow, footer {
text-shadow: 2px 2px 4px rgba( 0, 0, 0, 0.3 );
}
#three-container canvas {
border-radius: .5rem;
}
.bg-black-o-30 {
background-color: rgba(0, 0, 0, 0.3);
}
.dn {
display: none !important;
}
.rotate {
animation: rotation 2s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}