-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (79 loc) · 1.28 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
background-color: hwb(263 92% 5%);
padding: 0;
}
.fightarea {
display: flex;
gap: 20px;
padding: 20px;
}
#char,
#monster {
flex: 1;
background-color: #9e9e9e;
padding: 8px;
border-radius: 15px;
}
.lifebar {
height: 10px;
border: 1px solid #333;
border-radius: 5px;
margin: 10px;
}
.lifebar .bar {
height: inherit;
background-color: red;
border-radius: 5px;
}
.name {
margin: 10px;
font-size: 24px;
color: #333;
background-color: #9e9e9e;
}
.attackButton {
margin: 10px;
padding: 8px;
border-radius: 8px;
font-weight: bold;
box-shadow: 3px 4px 4px #333;
}
.attackButton:hover {
box-shadow: none;
background-color: #e7e7e7;
}
.attackdiv {
background-color: #9e9e9e;
display: flex;
align-items: center;
}
.log {
border: 1px double #ccc;
height: 200px;
width: 600px;
flex: 1;
overflow-y: scroll;
}
.area-log {
padding: 20px;
}
.arena {
width: 1600px;
height: 800px;
padding: 20px;
margin: 10px;
}
/* Icons */
.shield {
background-color: #9e9e9e;
width: 40px;
height: 40px;
}
/* Images */
.person-image {
width: 190px;
height: 190px;
display: contents;
justify-content: space-between;
padding: 50px;
}