Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Novos estilos para a página check existence #32

Merged
merged 5 commits into from
Feb 27, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 50 additions & 3 deletions dist/css/shards.css
Original file line number Diff line number Diff line change
Expand Up @@ -27471,15 +27471,38 @@ nav#subway-location .subway-location-switch .btn {
}

.website-auth main#main-container .wrapper .details-container {
max-width: 475px;
margin: 30px 0;
max-width: 430px;
margin: 15px auto;
}

.website-auth main#main-container .wrapper .details-container .title {
font-size: 26px;
font-weight: 600;
margin-bottom: 10px;
text-align: center;
}

.website-auth main#main-container .wrapper .details-container .subtitle {
font-size: 26px;
font-weight: 500;
text-align: center;
}

.website-auth main#main-container .wrapper .details-container .offer-wrapper {
width: 70%;
margin: 0 auto;
}

.website-auth main#main-container .wrapper .details-container .welcome-list {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
margin: 20px 0;
}

.website-auth main#main-container .wrapper .details-container .welcome-list .title {
font-weight: 400;
}

.website-auth main#main-container .wrapper .details-container .welcome-list .list-item {
Expand Down Expand Up @@ -27516,6 +27539,14 @@ nav#subway-location .subway-location-switch .btn {
margin: 20px 15px 50px;
}

.website-auth main#main-container .wrapper .auth-container .title {
font-size: 26px;
font-weight: 600;
margin-bottom: 5px;
text-align: center;
margin-bottom: 25px;
}

.website-auth main#main-container .wrapper .auth-container .card.card-auth {
margin: 0 0 30px;
}
Expand Down Expand Up @@ -27626,6 +27657,10 @@ nav#subway-location .subway-location-switch .btn {
margin-bottom: 0;
}

.website-auth main#main-container .wrapper .auth-container .card.card-auth .card-body .auth-form-container .form-group .font-bold {
font-weight: bold;
}

.website-auth main#main-container .wrapper .auth-container .card.card-auth .card-body .auth-form-container .form-group .bl-0 {
border-left: 0px;
}
Expand Down Expand Up @@ -27697,7 +27732,19 @@ nav#subway-location .subway-location-switch .btn {

@media (min-width: 768px) {
.website-auth main#main-container .wrapper .details-container {
margin: 100px 0;
margin-right: 30px;
margin-top: 100px;
}
.website-auth main#main-container .wrapper .details-container .title {
text-align: left;
}
.website-auth main#main-container .wrapper .details-container .subtitle {
font-size: 1rem;
font-weight: 600;
text-align: left;
}
.website-auth main#main-container .wrapper .details-container .offer-wrapper {
width: 60%;
}
}

Expand Down
6 changes: 5 additions & 1 deletion dist/css/shards.css.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/css/shards.min.css

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion dist/css/shards.min.css.map

Large diffs are not rendered by default.

56 changes: 53 additions & 3 deletions src/scss/whitelabel/page/_auth.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,35 @@
flex-wrap: wrap;

.details-container {
max-width: 475px;
margin: 30px 0;
max-width: 430px;
margin: 15px auto;

.title {
font-size: 26px;
font-weight: 600;
margin-bottom: 10px;
text-align: center;
}

.subtitle {
font-size: 26px;
font-weight: 500;
text-align: center;
}

.offer-wrapper {
width: 70%;
margin: 0 auto;
}

.welcome-list {
display: flex;
flex-direction: column;
margin: 20px 0;

.title {
font-weight: 400;
}

.list-item {
display: flex;
Expand Down Expand Up @@ -43,6 +66,14 @@
max-width: 100%;
margin: 20px 15px 50px;

.title {
font-size: 26px;
font-weight: 600;
margin-bottom: 5px;
text-align: center;
margin-bottom: 25px;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tem dois margin-bottom

}

.card {
&.card-auth {
margin: 0 0 30px;
Expand Down Expand Up @@ -144,6 +175,10 @@
margin-bottom: 0;
}

.font-bold {
font-weight: bold;
}

.bl-0 {
border-left: 0px;
}
Expand Down Expand Up @@ -224,7 +259,22 @@
main#main-container {
.wrapper {
.details-container {
margin: 100px 0;
margin-right: 30px;
margin-top: 100px;

.title {
text-align: left;
}

.subtitle {
font-size: 1rem;
font-weight: 600;
text-align: left;
}

.offer-wrapper {
width: 60%;
}
}
}
}
Expand Down