-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
144 lines (131 loc) · 2.61 KB
/
styles.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
font-family: Arial, sans-serif;
margin: 20px;
background-image: url("fundook.png");
background-position: center center;
background-repeat: no-repeat;
background-size: cover; /* Isso garantirá que a imagem cubra toda a área visível */
}
#vuMeterContainer {
height: 100px;
width: 30px;
background-color: #e0e0e0;
position: block;
margin-top: 20px;
}
#vuMeter {
height: 0%;
background-color: #4caf50;
width: 100%;
position: absolute;
bottom: 0;
}
#principal {
margin: 1em;
max-width: 50em;
background-color: #0e0e0ede;
border-radius: 20px;
padding: 1em;
box-shadow: -1px 1px 19px 0px #222222;
-webkit-box-shadow: -1px 1px 19px 0px #222222;
-moz-box-shadow: -1px 1px 19px 0px #222222;
transition: padding 0.3s ease; /* Para transições suaves ao redimensionar a tela */
}
/* Estilos para desktop */
@media (min-width: 768px) {
/* Ajuste 768px conforme necessário, é um valor comum para tablets */
#principal {
padding: 2em; /* Maior padding para desktops */
}
}
/* Estilos para dispositivos móveis */
@media (max-width: 767px) {
#principal {
padding: 1em; /* Padding padrão para dispositivos móveis */
}
}
#recordingDuration {
color: #ffae00;
font-size: 4.4rem;
}
.icon {
height: 10em;
}
.recent-item {
border-radius: 30px !important;
font-weight: bolder;
color: #00d9ff;
background-color: rgba(
255,
0,
0,
0
); /* Um fundo levemente mais escuro para destacar */
}
.recent-item td:first-child::before {
content: "🆕";
}
#recordingsList {
border-radius: 20px !important;
background-color: rgba(129, 0, 0, 0.349) !important;
size-adjust: inherit !important;
}
table {
width: 100%;
}
#recordingsList tr {
opacity: 0;
transition: opacity 0.5s;
}
#recordingsList ul {
opacity: 0;
transition: 0.5s ease-in-out;
transition: padding 0.3s ease;
}
#recordingsList tr.show {
opacity: 1;
transition: padding 0.3s ease;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.pulse {
animation: pulse 1s infinite ease-in-out;
}
.hidden {
display: none;
}
#monitorButton {
color: #ffffff;
}
#monitorButton:hover {
color: #000;
}
#deleteAllButton:hover {
color: #ececec !important;
background-color: #da6363 !important;
border: #000;
text-shadow: 1px 1px 1px 1px #000000 !important;
}
#deleteAllButton {
color: #ffffff !important;
background-color: #000 !important;
border: #da6363 solid 2px !important;
}
#recordButton {
}
#recordButton:hover {
color: #ffffff;
background-color: #1b1b1b;
}
#stopButton {
}
#stopButton:hover {
color: #ffffff;
background-color: #1b1b1b;
}