-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (56 loc) · 1.13 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
body {
background-image: linear-gradient(#3b1566, #5f4da8);
height: 100vh;
display: flex;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
justify-content: center;
flex-direction: column;
align-items: center;
color: #d6d6ea;
}
@media screen and (min-width: 200px) {
.card__container {
display: flex;
flex-direction: column;
align-items: center;
}
button {
background-color: inherit;
color: inherit;
border: none;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.music-container {
display: flex;
flex-direction: column;
align-items: center;
}
.informacoes-faixa {
display: flex;
flex-direction: column;
align-items: center;
margin: 2rem 0 1rem 0;
font-size: 1.5rem;
}
#anterior, #proximo {
font-size: 3rem;
}
#play-pause {
font-size: 4rem;
}
.container-botoes {
width: 100%;
display: flex;
justify-content: space-around;
}
}
@media screen and (min-width: 500px) {
/* em breve */
}