fix: ajusted indentation in css files

This commit is contained in:
Laureηt 2020-11-19 18:13:50 +01:00
parent 710336d881
commit 50e9bfdef6
2 changed files with 54 additions and 54 deletions

View file

@ -1,27 +1,27 @@
*::selection {
background: #c0c5ce;
color: #1c1f26;
}
*::-moz-selection {
}
*::-moz-selection {
background: #c0c5ce;
color: #1c1f26;
}
*::-webkit-selection {
}
*::-webkit-selection {
background: #c0c5ce;
color: #1c1f26;
}
}
@keyframes blink {
@keyframes blink {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
@-webkit-keyframes blink {
}
@-webkit-keyframes blink {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
.blink {
}
.blink {
animation: blink 1s step-start 0s infinite;
-webkit-animation: blink 1.5s step-start 0s infinite;
}
}