-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into prod
- Loading branch information
Showing
6 changed files
with
97 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,102 @@ | ||
@use "../../app/custom-css/1-helpers/variables" as var; | ||
|
||
.alert-sign-up { | ||
background-color: var.$primary; | ||
padding: 0.8rem; | ||
background-color: #f7f7f7; | ||
padding: 1.5rem; | ||
text-align: center; | ||
border-radius: 0.5rem; | ||
width: 80%; | ||
max-width: 400px; | ||
margin: 3rem auto 1rem; | ||
box-shadow: 0px 3px 6px #00000029; | ||
max-width: 400px; | ||
margin: 3rem auto 1rem; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
|
||
label, | ||
legend { | ||
color: var.$altPrimary; | ||
margin-bottom: 0.8rem; | ||
color: #333; | ||
margin-bottom: 1rem; | ||
font-weight: bold; | ||
display: block; | ||
} | ||
|
||
input[type='email'] { | ||
border-radius: 5rem; | ||
padding: 0.8rem; | ||
margin-bottom: 0.8rem; | ||
border: none; | ||
box-shadow: 0px 3px 6px #00000029; | ||
border-radius: 0.5rem; | ||
padding: 0.8rem; | ||
margin-bottom: 1rem; | ||
border: 1px solid #ccc; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
width: calc(100% - 2rem); | ||
font-size: 16px; | ||
} | ||
|
||
.topic-checkbox { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 0.3rem; | ||
margin-bottom: 0.5rem; | ||
|
||
& > label { | ||
padding: 0.4rem 0.8rem; | ||
padding: 0.4rem 0.8rem; | ||
background-color: transparent; | ||
border-radius: 5rem; | ||
cursor: pointer; | ||
margin-right: 0.5rem; | ||
|
||
&:hover { | ||
background-color: var.$secondary; | ||
color: var.$altPrimary; | ||
background-color: #6b93c3; | ||
color: #fff; | ||
} | ||
} | ||
|
||
input[type='checkbox'] { | ||
display: none; | ||
|
||
&:checked + label { | ||
background-color: var.$secondary; | ||
color: var.$altPrimary; | ||
background-color: #6b93c3; | ||
color: #fff; | ||
} | ||
} | ||
} | ||
|
||
.submit-button, | ||
.cancel-button { | ||
background-color: var.$secondary; | ||
color: var.$altPrimary; | ||
border-radius: 5rem; | ||
padding: 0.8rem 1.5rem; | ||
background-color: #6b93c3; | ||
color: #fff; | ||
border-radius: 0.5rem; | ||
padding: 0.8rem 1.5rem; | ||
border: none; | ||
cursor: pointer; | ||
width: calc(50% - 0.8rem); | ||
margin-top: 0.8rem; | ||
margin-right: 0.8rem; | ||
width: calc(50% - 0.8rem); | ||
margin-top: 1rem; | ||
margin-right: 0.8rem; | ||
font-size: 16px; | ||
|
||
&:last-child { | ||
margin-right: 0; | ||
} | ||
|
||
&:hover { | ||
background-color: darken(var.$secondary, 10%); | ||
background-color: #5582b3; | ||
} | ||
} | ||
|
||
.success-message { | ||
color: green; | ||
font-size: 0.9rem; | ||
margin-top: 0.8rem; | ||
color: #3c763d; | ||
font-size: 0.9rem; | ||
margin-top: 1rem; | ||
width: 100%; | ||
background-color: #dff0d8; | ||
padding: 0.8rem; | ||
border-radius: 0.5rem; | ||
} | ||
} | ||
|
||
@media (max-width: var.$tablet) { | ||
.alert-sign-up { | ||
width: 80%; | ||
margin-top: 3rem; | ||
width: 80%; | ||
margin-top: 3rem; | ||
|
||
.submit-button, | ||
.cancel-button { | ||
width: calc(50% - 0.8rem); | ||
width: calc(50% - 0.8rem); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters