-
Notifications
You must be signed in to change notification settings - Fork 0
/
entradaTexto.css
54 lines (54 loc) · 873 Bytes
/
entradaTexto.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
.principal {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
width: 100%;
height: 100%;
}
.texto-entrada {
font-size: 1.5rem;
background: none;
resize: none;
border: none;
color: var(--azulEscuro);
width: 100%;
height: 100%;
}
.texto-entrada:focus {
outline: 0;
}
.texto-entrada::placeholder {
color: var(--azulEscuro);
}
.informacao {
display: flex;
align-items: center;
font-size: 0.8rem;
gap: 0.3rem;
color: var(--cinza);
}
@media (min-width: 425px) {
.texto-entrada {
font-size: 2rem;
width: 80%;
}
}
@media (min-width: 768px) {
.principal {
justify-content: space-between;
}
.informacao {
font-size: 1rem;
}
}
@media (min-width: 1200px) {
.texto-entrada {
font-size: 2.5rem;
width: 70%;
}
.informacao {
font-size: 1.2rem;
}
}