-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
278 lines (233 loc) · 4.87 KB
/
style.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lato', sans-serif;
list-style-type: none;
text-decoration: none;
}
/*HEADER*/
header{
background-color: #3b5998;
padding: 8px 0;
}
.center{
max-width: 1100px;
margin: 0 auto; /*A margem auto que faz ficar na esqueda*/
padding: 0 2%;
}
.logo{
float: left;
color: white;
}
.logo h2{
font-size: 29px;
font-weight: normal;
}
form.form-login{
float: right; /* O problema era a div clear, que tava dentro do form*/
}
.form-element{
display: inline-block;
margin-right: 15px;
}
.form-element p{
color: white;
font-size: 14px;
}
.form-element input[type=email],
.form-element input[type=password]{
margin-top: 5px;
border: 0;
padding: 3px;
outline: none;
}
.form-element input[type=submit]{
cursor: pointer;
border: none;
background-color: #3a6cd6;
color: white;
padding: 3px 5px;
}
.form-element input[type=submit]:hover{
background: #1f4ba6;
}
.clear{
clear: both;
}
/*MAIN*/
section.main{
background: linear-gradient(white, #D3D8E8); /*Só pode ser background, sem o color. A div clear ajudou também.*/
padding: 40px 0;
}
.img-pessoas{
float: left;
width: 60%;
}
.img-pessoas img{
max-width: 100%;
}
.img-pessoas h3{
max-width: 460px;
font-size: 20px;
color: #0e385f;
}
.abrir-conta{
float: left;
width: 40%;
}
.abrir-conta h2{
color: #333;
font-size: 35px;
}
.abrir-conta h3{
color: rgb(30,30,30);
font-size: 19px;
margin-top: 10px;
font-weight: normal;
}
form.criar-conta{
margin-top: 10px;
}
.larg50{
width: 50%;
float: left;
padding: 5px 5px 0 0;
}
.larg100{
width: 100%;
float: left;
padding: 5px 5px 0 0;
}
form.criar-conta input{
width: 100%;
}
form.criar-conta input[type=email],
form.criar-conta input[type=text],
form.criar-conta input[type=password]{
font-size: 18px;
padding: 8px 10px;
border: 1px solid #ccd0d5;
border-radius: 5px;
outline: none;
}
form.criar-conta input[type=submit]{
background: linear-gradient(#67ae55, #578843);
background-color: #69a74e;
border: 1px solid;
border-radius: 5px;
color: #fff;
cursor: pointer;
padding: 10px;
font-size: 18px;
}
form.criar-conta input[type=submit]:hover{
background-color: #67ae55;
background: linear-gradient(#81d66c, #75b85b);
}
form.criar-conta .larg100 h3{
color: #90949c;
font-weight: bold;
}
form.criar-conta select.nascimento{
font-size: 18px;
float: left;
padding: 5px 10px;
border: 1px solid #ccd0d5;
border-radius: 5px;
outline: none;
margin-top: 5px;
}
form.criar-conta .input-radio{
display: inline-block;
padding: 0 10px 0 0;
margin: 0 0 15px 0;
}
form.criar-conta .input-radio label{
display: inline-block;
padding: 5px 5px 0 0;
}
form.criar-conta .input-radio input[type=radio]{
width: auto !important;
display: inline-block;
}
label{
color: #1d2129;
font-size: 18px;
font-weight: normal;
}
/*FOOTER*/
section.linguas{
padding: 10px 0;
}
section.linguas nav ul li{
display: inline-block;
}
section.linguas nav ul li a{
color: #385898;
font-size: 14px;
padding-right: 10px;
}
section.linguas nav ul li a:hover{
text-decoration: underline;
}
section.linguas nav ul li a.selected{
color: #737373;
cursor: auto;
}
section.linguas nav ul li a.selected:hover{
text-decoration: none;
}
section.linguas .center{
border-bottom: 1px solid #ccc;
padding-bottom: 10px;
padding-left: 8px;
padding-right: 8px;
}
section.linguas .center:last-child{
border: none;
padding-top: 8px;
}
/*RESPONSIVO*/
@media screen and (max-width: 768px){
.logo,
form.form-login{
width: 100%;
text-align: center;
float: none;
display: inline-block;
margin-top: 20px;
}
form.form-login div.form-element{
display: block;
margin: 10px 0;
}
form.form-login div.form-element p{
color: white;
font-size: 14px;
}
form.form-login div.form-element input[type=email],
form.form-login div.form-element input[type=password]{
margin-top: 5px;
border: 0;
padding: 5px;
outline: none;
width: 100%;
max-width: 320px;
}
form.form-login div.form-element input[type=submit]{
width: 140px;
}
div.img-pessoas{
display: none;
}
div.abrir-conta{
width: 100%;
}
div.img-pessoas{
display: none;
}
div.abrir-conta{
width: 100%;
}
}