-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
118 lines (101 loc) · 1.93 KB
/
main.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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
margin: 0;
background-color: #ffc700;
width: 100vw;
height: 100vh;
padding: 0;
display: flex;
}
.container {
margin: auto;
display: flex;
flex-direction: column;
}
.divider {
border-bottom: 1px solid #000;
width: 100%;
}
.divider p {
font-size: 3em;
}
.buttons {
display: flex;
flex-direction: column;
padding: 3rem;
}
.row {
display: flex;
margin: 0 auto;
}
.buttons .blacks a {
font-size: 10em;
background-color: black;
border-radius: 10rem;
min-height: 15rem;
min-width: 15rem;
display: flex;
text-decoration: none;
margin: 1rem;
}
.buttons .blacks a:hover {
cursor: pointer;
}
.buttons .blacks a p {
color: white;
margin: auto auto;
}
.performer .row a{
min-width: 31rem;
}
.inactive {
display: none;
}
.link {
font-size: 4em;
text-decoration: underline;
color: #000;
max-width: 80vw;
}
.link.instruction {
font-size: 10rem;
margin-block-start: 0;
}
.controls {
justify-content: space-evenly;
font-size: 3rem;
margin: 0 1rem 3rem 1rem;
border: 1px solid black;
padding: 5px 20px;
border-radius: 12px;
transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.controls:hover {
cursor: pointer;
}
.controls div {
margin: 0 auto;
}
.controls.on {
background-color: #000;
color: #fff;
}
input {
width: 50vw;
margin: 0 auto 4rem auto;
background: #000;
height: 1rem;
outline: none;
-webkit-appearance: none;
appearance: none;
border-radius: 5px;
direction: rtl
}
input::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
background-color: #000;
height: 3rem;
width: 3rem;
border-radius: 50%;
}