-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
114 lines (97 loc) · 1.81 KB
/
app.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
padding: 0;
margin: 0;
color:#00000099;
}
header {
border:solid 1px #636363;
padding: 5px 10px;
border-radius: 4px;
margin-bottom: 10px;
}
.face-container{
background: yellow;
border-radius: 50%;
width: 50px;
height: 50px;
}
.eyes{
display:flex;
justify-content: space-between;
width: 25px;
margin: 0px auto;
padding-top: 15px;
}
.eyes > div {
background: #000;
width: 5px;
height: 5px;
border-radius: 50%;
}
.sad {
width: 25px;
height: 5px;
margin: 0 auto;
margin-top: 10px;
border: solid 2.5px #000;
border-color: #000 transparent transparent transparent;
border-radius: 50%/25px 25px 0 0;
}
.smile {
width: 25px;
height: 5px;
margin: 0 auto;
margin-top: 10px;
border: solid 2.5px #000;
border-color: transparent #000 #000 #000;
border-radius: 0 0 25px 25px;
}
.actions {
display: flex;
justify-content: space-between;
align-items: center;
}
.actions #timer-game{
font-size: 20px;
padding: 10px 20px;
border: solid 1px #000;
}
.actions input[type="button"] {
background: #fff;
font-weight: 400;
border-radius: 4px;
font-size: 16px;
padding: 11px 21px;
}
.game {
}
.game .row {
display: flex;
justify-content: center;
}
.game .row .squad {
width: 35px;
height: 35px;
box-sizing: border-box;
vertical-align: top;
background: #a5a5a5;
border: outset 3.5px #ddd;
line-height: 35px;
text-align: center;
font-weight: 700;
cursor: pointer;
}
.game .row .squad:hover {
background: #8f8f8f;
}
.game .row .squad.isActive {
background: #a5a5a5;
cursor: default;
border: solid #696969 .5px;
}
.game .row .squad.isActive:hover {
background: #a5a5a5;
}
.game .row .squad.bomb {
color: red;
}