REFACTOR: Melhorias do CSS e HTML para telas menores.
This commit is contained in:
parent
f8874b33b9
commit
0e8815fe77
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"liveServer.settings.port": 5501
|
||||
}
|
||||
@ -43,8 +43,10 @@
|
||||
<div class="mb-3">
|
||||
<input class="form-control" type="file" id="csvfile" accept=".csv" required />
|
||||
</div>
|
||||
<button class="btn btn-primary" type="submit">Enviar CSV</button>
|
||||
<button type="button" class="btn btn-primary" id="card__button-download">Baixar Modelo</button>
|
||||
<div class="card-buttons__container">
|
||||
<button class="btn btn-primary button-mobile" type="submit">Enviar CSV</button>
|
||||
<button type="button" class="btn btn-primary button-mobile" id="card__button-download">Baixar Modelo</button>
|
||||
</div>
|
||||
</form>
|
||||
<div id="uploadResult" class="mt-3"></div>
|
||||
<div class="progress mt-2" style="height:24px; display:none;" id="progressWrap">
|
||||
@ -63,7 +65,7 @@
|
||||
<div class="row g-2">
|
||||
<div class="col-md-4"><input id="cep" class="form-control" placeholder="CEP (somente números)"></div>
|
||||
<div class="col-md-4"><input id="numero" class="form-control" placeholder="Número"></div>
|
||||
<div class="col-md-4"><button id="btnConsultaCep" class="btn btn-secondary">Consultar CEP</button></div>
|
||||
<div class="col-md-4 card-buttons__container"><button id="btnConsultaCep" class="btn btn-secondary">Consultar CEP</button></div>
|
||||
</div>
|
||||
<div id="consultaResult" class="mt-3"></div>
|
||||
</div>
|
||||
|
||||
@ -24,10 +24,19 @@
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding-bottom: 50px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.p-4 {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
.card-buttons__container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #31a3b5 !important;
|
||||
border: none !important;
|
||||
@ -71,6 +80,43 @@ button:hover {
|
||||
.header-logo__container > img {
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.description__container {
|
||||
padding-right: 20px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.description-title {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.description-title, .description-content {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-body > h5, .card-body > p {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.card-buttons__container {
|
||||
flex-direction: column-reverse;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.button-mobile {
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
#card__button-download {
|
||||
margin-left: 0px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#btnConsultaCep {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1200px) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user