-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
138 lines (121 loc) · 3.03 KB
/
style.css
File metadata and controls
138 lines (121 loc) · 3.03 KB
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
h1{
text-align: center;
}
h3{
text-align: center;
}
#start, #StartTournament{
margin: 0 auto;
display: block;
padding: 20px;
}
.weightClass{
display: block;
margin-bottom: 10px;
}
.weight{
margin-right: 10px;
}
#addWeightClass{
margin-bottom: 20px;
}
#page-2, #main{
text-align: center;
margin: 50px auto;
width: fit-content;
}
.hiddenDiv{
display: none;
}
.showDiv{
display: block;
}
#back{
position: absolute;
top: 40px;
left: 40px;
}
#page-0{
position: fixed;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
}
.modal {
z-index:101;
visibility: hidden;
}
.modal.active {
background-color: rgba(68, 62, 62, 0.6);
visibility: visible;
transition: opacity 0.5s;
position: absolute;
top:0;
left:0;
height:100%;
width: 100%;
}
#innerModal{
position: fixed;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
background-color: aliceblue;
width: 400px;
height: 200px;
opacity: 1;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
select {
-webkit-appearance: button;
-moz-appearance: button;
-webkit-user-select: none;
-moz-user-select: none;
-webkit-padding-end: 20px;
-moz-padding-end: 20px;
-webkit-padding-start: 2px;
-moz-padding-start: 2px;
background-color: rgb(224, 224, 224); /* Fallback color if gradients are not supported */
background-image: url(images/select-arrow.png), -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(224, 224, 224)); /* For Chrome and Safari */
background-image: url(images/select-arrow.png), -moz-linear-gradient(top, rgb(224, 224, 224), rgb(224, 224, 224)); /* For old Firefox (3.6 to 15) */
background-image: url(images/select-arrow.png), -ms-linear-gradient(top, rgb(224, 224, 224), rgb(224, 224, 224)); /* For pre-releases of Internet Explorer 10*/
background-image: url(images/select-arrow.png), -o-linear-gradient(top, rgb(224, 224, 224), rgb(224, 224, 224)); /* For old Opera (11.1 to 12.0) */
background-image: url(images/select-arrow.png), linear-gradient(to bottom, rgb(224, 224, 224)5, rgb(224, 224, 224)); /* Standard syntax; must be last */
background-size: 1.5em 1.6em;
background-position: center right;
background-repeat: no-repeat;
border: 1px solid #AAA;
border-radius: 2px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
color: #555;
font-size: inherit;
margin: 0;
overflow: hidden;
padding-top: 2px;
padding-bottom: 2px;
text-overflow: ellipsis;
white-space: nowrap;
}
button{
background: rgb(143, 138, 138);
border-radius: 10px;
font-size: 14px;
padding: 5px;
}
input{
background-color: rgb(250, 250, 250);
border: none;
color: rgb(31, 29, 29);
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
border: 1px solid black;
}
.BracketsVisual{
width: 30%;
margin: 0 auto;
}