-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 862 Bytes
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
background: -webkit-linear-gradient(#03001e,#290e22, #138397);
}
.container{
position: relative;
width: 100%;
height: 100%;
}
.bolhas{
position:absolute;
display: flex;
}
.bolhas span{
width:30px;
height: 30px;
background:#e5ff00;
margin: 0 4px;
border-radius: 50%;
box-shadow:0 0 0 10px #e5ff0044,
0 0 50% #e5ff00,
0 0 100% #e5ff00;
animation:animar calc(100s /var(--i)) linear infinite;
}
@keyframes animar{
0%{
transform: translateY(100vh) scale(0);
}
100%{
transform: translateY(-10vh) scale(1);
}
}
.bolhas span:nth-of-type(even){
background: #2dc3ff;
box-shadow:0 0 0 10px #2dc3ff44,
0 0 50px #2dc3ff,
0 0 100px #2dc3ff;
}