-
Notifications
You must be signed in to change notification settings - Fork 0
/
conjuration.css
64 lines (59 loc) · 1.57 KB
/
conjuration.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.aura--conjuration .aura-inner:after,
.aura--conjuration .aura-inner:before {
border-radius: 50%;
content: "";
display: block;
filter: blur(5px);
height: 100%;
position: absolute;
width: 100%;
will-change: auto;
}
.aura--conjuration .aura-inner:before {
-webkit-animation: aura 4s linear infinite;
animation: aura 4s linear infinite;
background: linear-gradient(0deg, rgba(50, 50, 255, 0.25), rgba(60, 60, 90, 0.8));
z-index: -2;
}
.aura--conjuration .aura-inner2:before {
-webkit-animation: aura-rev 3s linear infinite;
animation: aura-rev 3s linear infinite;
background: linear-gradient(180deg, rgba(0, 0, 200, 0.45), rgba(60, 60, 90, 0.8));
border-radius: 50%;
content: "";
display: block;
filter: blur(5px);
height: 100%;
position: absolute;
width: 100%;
will-change: auto;
z-index: -2;
}
.aura--conjuration .aura-inner2:after,
.aura--divination .aura-inner:before {
border-radius: 50%;
content: "";
display: block;
filter: blur(5px);
height: 100%;
position: absolute;
width: 100%;
will-change: auto;
}
.aura--conjuration .aura-inner:after {
-webkit-animation: aura-rev 2s linear infinite;
animation: aura-rev 2s linear infinite;
background: linear-gradient(90deg, rgba(0, 0, 200, 0.45), #99d);
z-index: -1;
}
.aura--conjuration .aura-inner:after,
.aura--conjuration .aura-inner:before {
border-radius: 50%;
content: "";
display: block;
filter: blur(5px);
height: 100%;
position: absolute;
width: 100%;
will-change: auto;
}