-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
157 lines (136 loc) · 2.72 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
}
.menu-icon {
position: absolute;
top: 10px;
left: 10px;
font-size: 2rem;
cursor: pointer;
z-index: 10;
}
.menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 9;
}
.menu-content {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 80%;
max-width: 200px;
display: flex;
flex-direction: column;
gap: 20px;
}
.menu-header {
display: flex;
justify-content: flex-end;
}
.menu-close {
cursor: pointer;
font-size: 1.5rem;
}
.score-adjust div {
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0;
}
.score-adjust button {
margin: 0 10px;
}
.bluelabel {
color: blue;
}
.redlabel {
color: red;
}
.container {
display: flex;
width: 100%;
height: 100%;
}
.score-button {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
/*border: none;*/
color: white;
cursor: pointer;
font-size: 30vw; /* 20% of the viewport width */
border: 0px solid purple;
}
.score-button:focus {
text-decoration: underline
}
/*
.score-button span {
//display: inline-block;
display: block;
max-height: 80%;
max-width: 80%;
font-size: 1em;
}
*/
.blue {
background-color: blue;
}
.red {
background-color: red;
}
/* Layout for when width is greater than height */
@media (min-aspect-ratio: 1/1) {
.container {
flex-direction: row;
}
}
/* Layout for when height is greater than width */
@media (max-aspect-ratio: 1/1) {
.container {
flex-direction: column;
}
}
#teamName {
font-size: .1em;
/*
position: relative;
top: -25%;
left: 24%;
flex: 100px 1;
background-color: rgba(0,0,0,0.5); /* Black background with opacity */
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
cursor: pointer; /* Add a pointer on hover */
}
.switcher {
position:absolute;
width: 50px;
height: 50px;
/* removing top and left allows the object to be in the center
top: 48%;
left: 47.5%;
background-color: purple;
*/
z-index: 8;
}