-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (70 loc) · 1.15 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 {
font-family: 'Roboto mono';
background-color: #CEB18D;
color: #14120F;
max-width: 1280px;
margin: auto;
/* color: #D4D2D1; */
}
img {
width: 5rem;
/* padding: 1rem; */
margin: 1rem;
}
.title {
font-size: 4rem;
margin: 1rem;
font-weight: bold;
}
.test {
display: block;
}
.buttons {
display: flex;
justify-content: center;
align-items: center;
margin: 20rem 2rem 0 2rem;
gap:2rem;
}
.button:hover {
cursor: pointer;
}
.inqueue {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0.25;
}
}
.playing {
background-color: #D4D2D1;
border-radius: 2rem;
box-shadow: 0.3rem 0.6rem #888888;
}
canvas {
position: fixed;
bottom: 0;
z-index: -1;
}
@media (max-width: 900px) {
body {
min-width: 320px;
}
.title {
font-size: 2.5rem;
text-align: center;
}
.buttons {
flex-direction: column;
height: 250px;
flex-wrap: wrap;
margin: 2rem 1rem;
gap: 1rem;
}
img {
width: 4rem;
padding: 0.5rem;
margin: 0.5rem;
}
}