File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ 24f555c89a4ee7d0775e27af7dcad1ed52637a25
Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ import { projects } from "@cv"
88
88
89
89
article h3 span {
90
90
color: rgb(0, 188, 47);
91
+ animation-name: flicker;
92
+ animation-duration: 3s;
93
+ animation-timing-function: ease-in;
94
+ animation-iteration-count: infinite;
91
95
}
92
96
93
97
footer {
@@ -110,6 +114,18 @@ import { projects } from "@cv"
110
114
margin-left: 5px;
111
115
}
112
116
117
+ @keyframes flicker {
118
+ 0% {
119
+ opacity: 1;
120
+ }
121
+ 50% {
122
+ opacity: 0.25;
123
+ }
124
+ 100% {
125
+ opacity: 1;
126
+ }
127
+ }
128
+
113
129
@media (width <= 700px) {
114
130
ul {
115
131
margin-inline: 0px;
@@ -121,4 +137,10 @@ import { projects } from "@cv"
121
137
padding: 0 0 16px 0;
122
138
}
123
139
}
140
+
141
+ @media print {
142
+ article h3 span {
143
+ animation-name: none;
144
+ }
145
+ }
124
146
</style >
You can’t perform that action at this time.
0 commit comments