-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (72 loc) · 1.4 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
body {
height: 100vh;
width: 100vw;
padding: 0;
margin: 0;
overflow-x: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #f5f5f5;
}
.team_name {
background-color: #b3b3b3a7;
padding: 30px;
font-size: larger;
display: flex;
flex-direction: column;
gap: 16px;
border-radius: 8px;
}
.team_name button {
padding: 8px 18px 8px 18px;
border-radius: 8px;
border: none;
text-transform: uppercase;
}
.team_name button:hover {
transform: scale();
background-color: #1e1e1e;
color: white;
}
.team_name input {
font-size: xx-large;
padding: 8px 16px;
}
.team_cont {
padding: 16px;
width: 100%;
height: 100%;
display: none;
grid-template-columns: auto auto;
text-align: center;
position: relative;
}
#teamA_Cont {
background-color: #2a2fc4;
color: white;
}
#teamB_Cont {
background-color: #d42424;
color: white;
}
.teamBoard button, .resetBtn {
padding: 8px 48px 8px 48px;
font-size: larger;
background-color: #f5f5f5;
border-radius: 8px;
border: none;
margin: 0px 2px 24px 2px ;
}
.teamBoard button:focus {
border: solid 3px #000000;
}
.round_count {
position: absolute;
background-color: white;
padding:0px 80px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}