neon_arch commited on
Commit
c0d2d1a
1 Parent(s): 76419a7

✨ feat(animations): provide a default frosted glow animation for the `simple` theme (#424)

Browse files
public/static/animations/simple-frosted-glow.css ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .results_aggregated .result {
2
+ margin: 1rem;
3
+ padding: 1rem;
4
+ border-radius: 1rem;
5
+ }
6
+
7
+ .results_aggregated .result:hover {
8
+ box-shadow:
9
+ inset 0 0 3rem var(--color-two),
10
+ inset 0 0 6rem var(--color-five),
11
+ inset 0 0 9rem var(--color-three),
12
+ 0 0 0.25rem var(--color-two),
13
+ 0 0 0.5rem var(--color-five),
14
+ 0 0 0.75rem var(--color-three);
15
+ }