File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -2776,4 +2776,39 @@ svg {
2776
2776
align-content : flex-start;
2777
2777
justify-content : flex-end;
2778
2778
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 ; }
2779
2814
}
You can’t perform that action at this time.
0 commit comments