File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1919
2020 < style >
2121 @import url ('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap' );
22+ /* ---------------- DeepSite Badge ---------------- */
23+ .deepsite-badge {
24+ display : inline-flex;
25+ align-items : center;
26+ gap : 0.4rem ;
27+ padding : 0.5rem 0.9rem ;
28+ background : rgba (255 , 255 , 255 , 0.08 );
29+ border : 1px solid rgba (255 , 255 , 255 , 0.25 );
30+ border-radius : 12px ;
31+ font-size : 0.9rem ;
32+ color : # fff ;
33+ text-decoration : none;
34+ position : relative;
35+ overflow : hidden;
36+ transition : background 0.3s ease, transform 0.2s ease;
37+ }
38+
39+ .deepsite-badge : hover {
40+ background : rgba (255 , 255 , 255 , 0.15 );
41+ transform : scale (1.03 );
42+ }
43+
44+ .deepsite-logo {
45+ width : 20px ;
46+ height : 20px ;
47+ }
48+
49+ .deepsite-badge .pulse {
50+ animation : badgePulse 2.5s infinite;
51+ }
52+
53+ @keyframes badgePulse {
54+ 0% { box-shadow : 0 0 0 0 rgba (255 , 255 , 255 , 0.3 ); }
55+ 70% { box-shadow : 0 0 0 8px rgba (255 , 255 , 255 , 0 ); }
56+ 100% { box-shadow : 0 0 0 0 rgba (255 , 255 , 255 , 0 ); }
57+ }
2258
2359 body {
2460 font-family : 'Roboto' , sans-serif;
You can’t perform that action at this time.
0 commit comments