cyp/app/css/yt.less
Ondrej Zara 4995018b40 styling
2019-03-30 22:05:33 +01:00

39 lines
550 B
Plaintext

#yt {
.component;
align-items: center;
justify-content: center;
.go {
width: 96px;
height: 96px;
&:disabled {
position: relative;
&::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-top: 3px solid var(--primary);
border-radius: 50%;
animation: rotate linear 3s infinite;
}
}
}
p {
margin: 16px 8px;
white-space: pre-wrap;
}
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}