forked from Dezenix/frontend-html-css-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (72 loc) · 1.27 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body{
background-color: rgb(7, 7, 7);
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
margin-top: 10%;
}
.nib{
height: 20px;
width: 60px;
/* background: black; */
border-top-right-radius: 8px;
border-top-left-radius: 8px;
border: 5px solid grey;
margin: 0 auto;
}
.case{
width: 200px;
height: 350px;
background: black;
border-radius: 20px;
margin: 0 auto;
position: relative;
border: 4px solid grey;
}
i.fa-bolt{
color: whitesmoke;
z-index: 1;
top: 30px;
left: 40%;
font-size: 40px;
position: absolute;
animation: symbol 2s linear infinite;
}
.charge{
width: 100%;
position: absolute;
bottom: 0;
border-radius: 14px;
animation: charging 6s linear infinite;
}
@keyframes symbol{
50%{
transform: scale(1.2);
}
100%{
transform: scale(1);
}
}
@keyframes charging{
0%{
height:0%;
background-color:red;
}
25%{
height:25%;
background-color:orange;
}
50%{
height:50%;
background-color:yellow;
}
75%{
height:75%;
background-color:yellow-green;
}
100%{
height:100%;
background-color:green;
}
}