-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
138 lines (110 loc) · 1.84 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
@font-face{
font-family: 'Roboto';
src: url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
}
*{
font-family: 'Roboto', Arial;
}
.container{
width: 100%;
height: 100%;
}
.player{
width: 40%;
display: flex;
text-align: center;
flex-direction: column;
}
.center{
text-align: center;
}
.green{
color: green;
}
.red{
color: red;
}
/* boxes style */
.box{
margin-top: 30px;
width: 100%;
box-shadow: -2px 4px 7px -5px rgba(0,0,0,0.75);
}
.box-players{
height: 150px;
display: flex;
justify-content: space-around;
}
.box-actions{
display: flex;
justify-content: space-around;
padding: 20px 0px;
}
.box-logs{
width: 100%;
height: 250px;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 0px;
overflow-y: scroll;
}
.box-winner{
display: flex;
justify-content: center;
padding: 15px 0px;
font-size: 20px;
}
/* Button styles */
.btn{
color: white;
padding: 10px;
border-width: 0;
border-radius: 3px;
font-weight: 400;
cursor: pointer;
box-shadow: -1px 4px 16px -5px rgba(0,0,0,0.75);
margin: 0px 5px;
}
.btn-success{
background-color: rgb(8, 117, 8);
}
.btn-warning{
color: black;
background-color: rgb(240, 240, 13);
}
.btn-danger{
background-color: rgba(255, 0, 0, 0.767);
}
.btn-default{
background-color: rgb(158, 152, 152);
}
.btn-primary{
background-color: rgb(62, 62, 235);
}
/* progress bar style */
.progress-bar{
width: 100%;
height: 30px;
border: solid 1px black;
}
.progress{
height: 100%;
background-color: rgb(8, 117, 8);
}
/* alerts style */
.alert{
width: 80%;
text-align: center;
padding: 13px 0px;
border-radius: 5px;
margin-bottom: 15px;
}
.alert-danger{
color: white;
background-color: rgba(255, 0, 0, 0.767);
}
.alert-primary{
color: white;
background-color: rgb(62, 62, 235);
}