-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (86 loc) · 1.76 KB
/
style.css
File metadata and controls
105 lines (86 loc) · 1.76 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #0A0A0A !important;
padding-bottom: 3rem;
}
hr {
color: white;
margin-top: -1.2rem;
}
h1 {
color: #00BFFF;
margin: 2rem 0 !important;
}
h2 {
color: #FFFFFF !important;
font-size: 1.5rem;
font-weight: 400;
}
a {
text-decoration: none !important;
}
.btn-add {
border: none;
color: aliceblue !important;
background-color: #00BFFF !important;
transition: 0.3s ease-in-out;
}
.btn-add:hover {
transform: scale(1.05);
}
.album {
transition: 0.3s ease-in-out;
}
.album:hover {
transform: scale(1.05);
}
.img-album {
max-width: 100%;
}
.form {
background-color: #f7f7f7;
padding: 1.5rem;
border-radius: 10px;
}
a .voltar {
margin-top: 1rem !important;
color: #FFFFFF !important;
transition: transform 0.2s ease-in-out;
}
a .voltar:hover {
transform: translateX(-5px);
/* move para a esquerda */
}
.audio {
width: 100% !important;
margin-bottom: 1rem;
}
.audio-player {
background-color: #101826;
border-radius: 22px;
/* padding: 10px; */
/* border: 1px solid #2e3b55; */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
outline: none;
}
.audio-player::-webkit-media-controls-panel {
background-color: #101826;
color: white;
border-radius: 12px;
}
.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-volume-slider,
.audio-player::-webkit-media-controls-timeline,
.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
filter: invert(1);
/* deixa os ícones e textos brancos */
}
/* Espaçamento entre os players */
.audio {
margin-bottom: 20px;
}