@@ -24,17 +24,92 @@ SOFTWARE.
24
24
25
25
*/
26
26
27
- .rmo {
27
+ : root {
28
+ --a : 5s ease-in-out infinite; /* Animation */
29
+ --g : 0px 0px 12px rgba (255 , 255 , 255 , 0.4 ); /* Glow */
30
+ }
31
+
32
+ .rmo { /* Rubik Mono One */
28
33
font-family : "Rubik Mono One" , "Rubik" , monospace;
29
34
}
30
- .scp {
35
+ .scp { /* Source Code Pro */
31
36
font-family : "Source Code Pro" , monospace;
32
37
}
33
- .lz {
38
+ .lz { /* Lexend Zetta */
34
39
font-family : "Lexend Zetta" , sans-serif;
35
40
}
36
41
37
42
.builder {
38
43
left : 50% ;
39
44
translate : -50% 0% ;
40
45
}
46
+
47
+ h1 {
48
+ margin : 0 ;
49
+ padding : 50px 10px ;
50
+ text-align : center;
51
+ animation : gt var (--a );
52
+ -webkit-animation : gt var (--a );
53
+ }
54
+ .demo ::after {
55
+ content : 'Demo' ;
56
+ margin-left : 20px ;
57
+ padding : 0px 10px ;
58
+ background-color : white;
59
+ color : black;
60
+ border-radius : 15px ;
61
+ animation : g var (--a );
62
+ -webkit-animation : g var (--a );
63
+ animation-delay : 0.2s ;
64
+ -webkit-animation-delay : 0.2s ;
65
+ }
66
+
67
+ .cw { /* Color White */
68
+ color : white;
69
+ }
70
+
71
+ .ag { /* Animation Glow (Text) */
72
+ animation : g var (--a );
73
+ -webkit-animation : g var (--a );
74
+ }
75
+ .agt { /* Animation Glow (Text) */
76
+ animation : gt var (--a );
77
+ -webkit-animation : gt var (--a );
78
+ }
79
+
80
+ @keyframes g { /* Glow */
81
+ 0% , 100% {
82
+ filter : none;
83
+ -webkit-filter : none;
84
+ }
85
+ 40% {
86
+ filter : drop-shadow (var (--g ));
87
+ -webkit-filter : drop-shadow (var (--g ));
88
+ }
89
+ }
90
+ @-webkit-keyframes g {
91
+ 0% , 100% {
92
+ filter : none;
93
+ -webkit-filter : none;
94
+ }
95
+ 40% {
96
+ filter : drop-shadow (var (--g ));
97
+ -webkit-filter : drop-shadow (var (--g ));
98
+ }
99
+ }
100
+ @keyframes gt { /* Glow (Text) */
101
+ 0% , 100% {
102
+ text-shadow : none;
103
+ }
104
+ 40% {
105
+ text-shadow : var (--g );
106
+ }
107
+ }
108
+ @-webkit-keyframes gt {
109
+ 0% , 100% {
110
+ text-shadow : none;
111
+ }
112
+ 40% {
113
+ text-shadow : var (--g );
114
+ }
115
+ }
0 commit comments