-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhealthstyles.css
61 lines (54 loc) · 1.01 KB
/
healthstyles.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
.HealthUI {
position: absolute;
left: 7%;
top: 25%;
overflow: hidden;
width: 30px;
height: 300px;
border: 1px solid #ccc;
background-color: #f0f0f0;
z-index: 1;
}
.HealthBar {
height: 100%;
width: 100%;
background-color: greenyellow;
transition: height 0.3s ease;
}
.Healthlogo {
position: absolute;
top: 55%;
left: 8%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
opacity: 1;
z-index: 2;
}
.HealthUI2 {
position: absolute;
left: 90%;
top: 25%;
overflow: hidden;
width: 30px;
height: 300px;
border: 1px solid #ccc;
background-color: #f0f0f0;
z-index: 1;
}
.HealthBar2 {
height: 100%;
width: 100%;
background-color: greenyellow;
transition: height 0.3s ease;
}
.Healthlogo2 {
position: absolute;
top: 55%;
left: 91%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
opacity: 1;
z-index: 2;
}