-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
161 lines (129 loc) · 2.59 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
* {
margin: 0px;
padding: 0px;
font-family: Arial, Helvetica, sans-serif;
scroll-behavior: smooth;
transition: 400ms;
}
:root {
--cor-destaque: #023e8a;
}
header h1 {
margin: 1rem;
width: 175px;
color: var(--cor-destaque);
border-bottom-color: var(--cor-destaque);
border-bottom-width: 10px;
border-bottom-style: solid;
}
main {
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
gap: 1rem;
flex-wrap: wrap;
}
.left h1 {
margin: 1rem;
font-size: 3.2rem;
margin-top: 60px;
}
.left h3 {
margin: 1rem;
font-size: 1.2rem;
margin-top: 20px;
font-weight: 400;
text-align: center;
}
.left span {
color: var(--cor-destaque);
}
.right {
display: flex;
flex-direction: column;
font-size: 1.2rem;
align-items: center;
font-weight: 600;
}
.right input,
select {
font-size: 1.2rem;
}
.right input {
width: 180px;
}
.btn-simular {
display: flex;
align-items: center;
justify-content: center;
width: 6rem;
height: 3rem;
border-radius: 15px;
margin-top: 25px;
background-color: var(--cor-destaque);
color: white;
text-align: center;
text-decoration: none;
}
.btn-simular:hover{
box-shadow: 2px 20px 30px 1px var(--cor-destaque);
}
.resultado {
display: flex;
flex-direction: column;
align-items: center;
width: 100vw;
height: 100vh;
}
.container-resultado {
background-color: var(--cor-destaque);
color: white;
width: 300px;
height: 400px;
border-radius: 15px;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 3rem;
}
.container-resultado label {
margin: 1rem;
}
.resultado-parcela {
background-color: white;
padding: 10px;
border-radius: 32px;
color: #219ebc;
}
.container-resultado input {
width: 150px;
height: 23px;
border-radius: 15px;
border: none;
text-align: center;
}
.hero-mobile {
margin-top: 20px;
}
.hero-mobile2 {
width: 130px;
margin-top: 3rem;
}
#valorParcela {
padding: 8px;
font-size: 1.5rem;
}
/* Mantem o fundo branco e o texto preto mesmo sob efeito do disable no html*/
input{
background-color: white;
color: black;
}
/* estilização dos campos de entrada na primeira tela */
.valorSolicitado, .parcelaSolicitada{
border-radius: 15px;
text-align: center;
}
footer{
text-align: center;
}