-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinput.css
102 lines (84 loc) · 1.67 KB
/
input.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
/*
.center {
max-width: fit-content;
margin-left: auto;
margin-right: auto;
}
*/
.svg_center {
max-width: 40%;
margin-left: auto;
margin-right: auto;
}
img.buttonimage {
width: 0.75cm;
height: 0.75cm;
}
input.numberbutton {
width: 0.8cm;
height: 0.8cm;
font-size: larger;
}
div.buttons {
display: flex;
align-items: center;
}
span.checklabel {
border-right: 10px solid white;
}
a#strategylink {
border-left: 10px solid white;
}
button#strategybutton {
margin-left: 8px;
}
#basecontent {
padding-left: 20%;
}
label.strategylabel {
border-left: 10px solid white;
}
#gametime {
border-top: 5px solid white;
border-left: 10px solid white;
}
svg {
cursor: pointer;
}
#video {
position: absolute;
top: 0;
left: 0;
opacity: 0.6;
visibility: hidden;
max-width: 100%;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0, 0, 0, 0); /* Black w/ opacity */
}
.modal-content {
background-color: #ffc16a;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 5px solid #fe4102;
width: fit-content; /* Could be more or less, depending on screen size */
border-radius: 15px;
}
/* The Close Button */
.close {
color: #900101;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
width: 10px;
}