-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (100 loc) · 2.77 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
/* Importa fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Cedarville+Cursive&family=Gochi+Hand&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');
/* Define o estilo do corpo da página */
body {
font-family: Arial, sans-serif; /* Define a fonte padrão */
background-color: #f0f0f0; /* Define a cor de fundo */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: url('./bg_coin.jpg'); /* Define uma imagem de fundo */
}
/* Estilo para o contêiner do conversor */
.container-conversor {
background-color: rgb(252, 255, 230);
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 50px #ffdbb1; /* Sombra do contêiner */
border-top: #ffae00 6px solid; /* Borda superior */
}
/* Estilo para o cabeçalho */
h1 {
color: #3f300f;
text-align: center;
margin-bottom: 20px;
font-family: "Poetsen One", sans-serif;
font-weight: 400;
font-style: normal;
}
/* Estilo para o formulário de conversão */
#conversor-form {
display: flex;
flex-direction: column;
border: #ffdbb1 1px dashed; /* Borda tracejada */
padding: 20px;
border-radius: 8px;
}
/* Estilo para os elementos de input, select e button */
input, select, button {
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
background: #f5ff76;
}
/* Estilo específico para o campo de quantidade */
#quantia {
background: #a5ecbd;
border: 1px solid #a5ecbd;
}
/* Estilo específico para a seleção de moeda de entrada */
.moeda-entrada {
background: #a5ecbd;
}
/* Estilo para o botão */
button {
background-color: #ffae00;
box-shadow: 0 2px 10px #00000077; /* Sombra do botão */
color: white;
cursor: pointer;
border: none;
font-family: "Archivo Black", sans-serif;
font-weight: 400;
font-style: normal;
}
/* Efeito hover para o botão */
button:hover {
background-color: #a06d00;
}
/* Estilo para o elemento de resultado */
#resultado {
margin-top: 20px;
font-size: 1.2em;
text-align: center;
font-family: "Rowdies", sans-serif;
font-weight: 400;
font-style: normal;
padding: 20px;
background: #ffda4b;
border-radius: 8px;
border: 2px dashed #ffb500;
color: #470000;
text-shadow: 0 2px 2px #ff0000; /* Sombra do texto */
visibility: hidden; /* Inicialmente oculto */
}
/* Estilo do rodapé */
footer {
display: flex;
background-color: #333;
color: #f0f0f0;
position: fixed;
bottom: 0;
height: 50px;
width: 100%;
border-top: 2px solid #ebbb1c;
justify-content: center;
align-items: center;
}