mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-02 03:22:31 +02:00
32 lines
589 B
CSS
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;
|
|
} |