a84b50bd3a
+ hack to convert resumes to be paginable
44 lines
535 B
CSS
Executable file
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;
|
|
}
|