-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
165 lines (145 loc) · 3.67 KB
/
main.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* Removendo os botões de aumento e diminuição dos inputs de número */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Estilos globais para a página */
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Handlee', cursive;
}
/* Estilos para o cabeçalho */
header {
display: flex;
align-items: center;
justify-content: space-around;
padding: 16px;
background-color: #25d366; /* Verde do WhatsApp */
border-top-left-radius: 50px;
border-top-right-radius: 50px;
height: 100px;
}
header h1 {
font-size: 40px;
text-decoration: underline solid 2px #fff; /* Branco */
text-underline-offset: 5px;
color: #fff; /* Branco */
}
header img {
height: 100px;
width: 100px;
}
header h1,
header h3 {
text-decoration: underline solid 2px #fff; /* Branco */
text-underline-offset: 5px;
color: #fff; /* Branco */
}
/* Estilos para o contêiner principal */
.container {
max-width: 1204px;
height: 100%;
margin: 0 auto;
background-color: #fff; /* Branco */
border-radius: 10px; /* Bordas arredondadas */
align-items: center;
}
/* Estilos para o corpo da página */
body {
padding-top: 100px;
}
/* Estilos para o formulário */
#formulario {
border-bottom: 2px solid #25d366; /* Verde do WhatsApp */
border-top: 2px solid #25d366; /* Verde do WhatsApp */
width: 100%;
background-color: #25d366; /* Verde do WhatsApp */
height: 65px;
display: flex;
justify-content: space-between;
}
form input {
font-size: 18px;
border: 2px solid #000; /* Preto */
border-radius: 10px; /* Bordas arredondadas */
padding: 7px;
margin: 10px 15px;
width: 200px;
background-color: #fff; /* Branco */
}
#inputCor {
width: 50px;
border-radius: 10px; /* Bordas arredondadas */
}
form button {
font-family: 'Nanum Brush Script', cursive;
font-size: 20px;
border-radius: 10px; /* Bordas arredondadas */
min-width: 100px;
margin: 3px 15px;
padding: 5px;
background-color: #25d366; /* Verde do WhatsApp */
font-weight: bold;
}
form button:hover {
cursor: pointer;
background-color: #25d366ba; /* Verde do WhatsApp com transparência */
border-radius: 10px; /* Bordas arredondadas */
}
/* Estilos para a tabela */
table {
font-family: 'Nanum Brush Script', cursive;
width: 100%;
font-size: 24px;
justify-content: space-between;
align-items: center;
}
table th {
border-bottom: 2px solid #040101;
padding: 16px;
border-radius: 10px; /* Bordas arredondadas */
}
table td {
padding: 16px 0px;
text-align: center;
font-size: 20px;
border-bottom: 2px solid #040101;
font-family: 'Handlee', cursive;
border-radius: 10px; /* Bordas arredondadas */
}
/* Estilos para o rodapé */
footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px;
background-color: #8FE0D4;
border-radius: 10px; /* Bordas arredondadas */
}
footer button {
font-family: 'Nanum Brush Script', cursive;
font-size: 18px;
border-radius: 10px; /* Bordas arredondadas */
width: 200px;
background-color: #25d366; /* Verde do WhatsApp */
padding: 8px;
}
footer button:hover {
cursor: pointer;
background-color: #ff6961;
border-radius: 10px; /* Bordas arredondadas */
}
footer span {
text-decoration: underline 2px;
font-size: 20px;
font-family: 'Nanum Brush Script', cursive;
font-weight: bold;
}
/* Classes de fontes (não tenho informações sobre as fontes "handmade" e "brusher") */
.fontes {
font-family: handmade;
font-family: brusher;
}