Files
vscode-front-matter/src/pagesView/styles.css
2021-09-09 10:02:51 +02:00

32 lines
589 B
CSS

@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
.loader {
border-top-color: #15c2cb;
animation: spinner 1.5s linear infinite;
}
@-webkit-keyframes spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
[type=checkbox]:checked {
background-image: none;
}
[type=checkbox]:checked:after {
content: '\2713';
font-size: 14px;
position: absolute;
top: -1px;
left: 2px;
color: white;
}