-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
99 lines (82 loc) · 1.38 KB
/
styles.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
94
95
96
97
98
99
.container {
padding: 0 200px;
}
.players-wrapper {
display: flex;
justify-content: space-between;
}
.playing-side {
width: 50%;
}
.playing-side h1 {
text-align: center;
font-size: 40px;
}
.health-bar {
width: 500px;
margin: 0 auto;
height: 50px;
border: 2px black solid;
}
.current-health {
height: calc(100% - 10px);
background-color: green;
padding-top: 10px;
font-size: 20px;
text-align: center;
color: white;
}
.common-wrapper {
margin-top: 20px;
box-shadow: 0 2px 5px #bbb;
}
.control-buttons {
height: 70px;
display: flex;
justify-content: space-around;
align-items: center;
}
.btn {
text-transform: uppercase;
padding: 10px;
border-radius: 5px;
font-size: 16px;
}
.btn:focus {
outline: none;
}
#start-game-btn {
background-color: #a7ffaf;
}
#attack-btn {
background-color: #f87469;
}
#special-attack-btn {
background-color: #ffaf4e;
}
#heal-btn {
background-color: #77fd80;
}
#give-up-btn {
background-color: #fffdff;
}
ul.log {
list-style-type: none;
padding: 30px;
}
.logged-action {
text-align: center;
text-transform: uppercase;
font-weight: 800;
font-size: 18px;
margin: 5px 0;
height: 20px;
}
.player-log {
color: #150dd7;
background-color: #e5e6ff;
}
.monster-log {
color: #751312;
background-color: #ffbfc1;
}