This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
personal-website-old/pages/css/blink.css
Laureηt a84b50bd3a fix: formatting (editorconfig)
+ hack to convert resumes to be paginable
2021-05-23 00:16:10 +02:00

44 lines
535 B
CSS
Executable file

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