fix: ajusted indentation in css files
This commit is contained in:
parent
710336d881
commit
50e9bfdef6
|
@ -1,27 +1,27 @@
|
||||||
*::selection {
|
*::selection {
|
||||||
background: #c0c5ce;
|
background: #c0c5ce;
|
||||||
color: #1c1f26;
|
color: #1c1f26;
|
||||||
}
|
}
|
||||||
*::-moz-selection {
|
*::-moz-selection {
|
||||||
background: #c0c5ce;
|
background: #c0c5ce;
|
||||||
color: #1c1f26;
|
color: #1c1f26;
|
||||||
}
|
}
|
||||||
*::-webkit-selection {
|
*::-webkit-selection {
|
||||||
background: #c0c5ce;
|
background: #c0c5ce;
|
||||||
color: #1c1f26;
|
color: #1c1f26;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes blink {
|
@keyframes blink {
|
||||||
0% { opacity: 1.0; }
|
0% { opacity: 1.0; }
|
||||||
50% { opacity: 0.0; }
|
50% { opacity: 0.0; }
|
||||||
100% { opacity: 1.0; }
|
100% { opacity: 1.0; }
|
||||||
}
|
}
|
||||||
@-webkit-keyframes blink {
|
@-webkit-keyframes blink {
|
||||||
0% { opacity: 1.0; }
|
0% { opacity: 1.0; }
|
||||||
50% { opacity: 0.0; }
|
50% { opacity: 0.0; }
|
||||||
100% { opacity: 1.0; }
|
100% { opacity: 1.0; }
|
||||||
}
|
}
|
||||||
.blink {
|
.blink {
|
||||||
animation: blink 1s step-start 0s infinite;
|
animation: blink 1s step-start 0s infinite;
|
||||||
-webkit-animation: blink 1.5s step-start 0s infinite;
|
-webkit-animation: blink 1.5s step-start 0s infinite;
|
||||||
}
|
}
|
Reference in a new issue