-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotoes.css
61 lines (61 loc) · 977 Bytes
/
botoes.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
.button {
display: flex;
gap: 1rem;
flex-direction: column;
justify-content: center;
align-items: center;
}
.botoes {
border-radius: 20px;
font-size: 0.8rem;
height: 40px;
width: 150px;
transition: 1s;
cursor: pointer;
text-decoration: none;
}
.botoes:hover {
font-size: 1rem;
}
#botaoCriptografar {
background-color: var(--azulEscuro);
color: var(--branco);
}
#botaoDesincriptografar {
background: var(--azulClaro);
color: var(--cinza);
}
@media (min-width: 425px) {
.botoes {
font-size: 1.2rem;
height: 50px;
width: 180px;
}
.botoes:hover {
font-size: 1.3rem;
}
}
@media (min-width: 768px) {
.botoes {
font-size: 1.5rem;
height: 60px;
width: 300px;
}
.botoes:hover {
font-size: 2rem;
}
}
@media (min-width: 1200px) {
.button {
flex-direction: row;
gap: 2rem;
}
.botoes {
font-size: 2rem;
height: 67px;
width: 328px;
}
.botoes:hover {
font-size: 2.2rem;
}
}