Skip to content

Commit 4a7342c

Browse files
committed
Update tuicss.css
1 parent ca1461c commit 4a7342c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

assets/tuicss.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2776,4 +2776,39 @@ svg {
27762776
align-content: flex-start;
27772777
justify-content: flex-end;
27782778
overflow: hidden;
2779+
}
2780+
2781+
.bio__desc::after {
2782+
content: "";
2783+
position: absolute;
2784+
top: 0;
2785+
right: -15px;
2786+
/* Remove display: inline-block if not required to be on the same line as text etc */
2787+
display: inline-block;
2788+
background-color: #606060;
2789+
vertical-align: top;
2790+
width: 10px;
2791+
/* Set height to the line height of .text */
2792+
height: 24px;
2793+
/*
2794+
Animation paramaters:
2795+
blink = animation-name,
2796+
1s = animation-duration,
2797+
step-end = animation-timing-function,
2798+
infinite = animation-iteration-count
2799+
*/
2800+
-webkit-animation: blink 1s step-end infinite;
2801+
animation: blink 1s step-end infinite;
2802+
}
2803+
2804+
@-webkit-keyframes blink {
2805+
0% { opacity: 1.0; }
2806+
50% { opacity: 0.0; }
2807+
100% { opacity: 1.0; }
2808+
}
2809+
2810+
@keyframes blink {
2811+
0% { opacity: 1.0; }
2812+
50% { opacity: 0.0; }
2813+
100% { opacity: 1.0; }
27792814
}

0 commit comments

Comments
 (0)