-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (89 loc) · 1.6 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
94
95
96
97
98
99
100
101
102
103
104
105
* {
margin: 0;
font-family: Roboto, sans-serif;
}
body {
background-color: rgb(218, 181, 133);
}
.game-interface {
background-color: antiquewhite;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
gap: 3rem;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
padding: 4rem;
}
.player {
display: flex;
text-align: center;
font-weight: 700;
gap: 4rem;
width: 400px;
border-radius: 8px;
padding: 2rem;
}
.mid-interface {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 2rem;
}
.btn-list {
display: flex;
list-style: none;
align-items: center;
justify-content: center;
gap: .5rem;
margin: 0;
padding: 0;
}
.btn {
width: 5rem;
font-weight: 800;
background: rgb(218, 181, 133);
border-radius: 8px;
border: none;
padding: .3rem;
cursor: pointer;
}
.btn:hover {
transform: scale(1.1);
transition: 1s all;
}
/* indicadores */
.player-active {
background-color: rgb(228, 134, 13);
}
.player-name {
text-align: center;
background-color: rgb(218, 181, 133);
border-radius: 8px;
padding: .5rem;
}
.current-score {
text-align: center;
background-color: rgb(218, 181, 133);
border-radius: 8px;
padding: .5rem;
}
.total-score{
background-color: rgb(218, 181, 133);
border-radius: 8px;
padding: .5rem;
}
.win {
background-color: green;
}
.win-txt {
font-weight: 700;
text-align: center;
}
.hidden {
display: none;
}