-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (72 loc) · 1.09 KB
/
Copy pathstyles.css
File metadata and controls
82 lines (72 loc) · 1.09 KB
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
79
80
81
82
* {
box-sizing: border-box;
}
#box {
position: relative;
display: inline-block;
}
#containerTop {
position: absolute;
display: flex;
width: 100%;
align-items: center;
padding: 20px;
}
#containerHealth {
position: relative;
height: 30px;
width: 100%;
display: flex;
justify-content: flex-end;
}
#containerHealth-Background {
background-color: yellow;
height: 30px;
width: 100%;
}
#playerHealth {
position: absolute;
background: blue;
top: 0;
bottom: 0;
right: 0;
width: 100%;
}
#timer {
background-color: red;
height: 100px;
width: 100px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}
#containerTop2 {
position: relative;
height: 30px;
width: 100%;
}
#containerHealth-enemy {
background-color: yellow;
height: 30px;
}
#enemyHealth {
position: absolute;
background: blue;
top: 0;
bottom: 0;
right: 0;
left: 0;
}
#displayTie {
position: absolute;
color: white;
display: flex;
align-items: center;
justify-content: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
}