-
-
Notifications
You must be signed in to change notification settings - Fork 799
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* begin css changes * initial page styling * add submit success message * styled the inputs to be more simple * small update * change colors to variables * fix github error checking, and make textarea required
- Loading branch information
Showing
3 changed files
with
139 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
.wins-form { | ||
min-height: calc(100vh - 223px); | ||
display: flex; | ||
align-items: center; | ||
background: $color-blue-dark; | ||
.wins-form-title { | ||
font-size: 35px; | ||
font-weight: 400; | ||
line-height: 41px; | ||
} | ||
form.page-card { | ||
flex: 0 1 896px; | ||
} | ||
.page-card-lg { | ||
max-width: 896px; | ||
box-shadow: 0 0 8px 0 rgba(51, 51, 51, 0.2); | ||
padding: 48px 100px; | ||
margin: 16px auto; | ||
// NEW MOBILE FRIENDLY RULES | ||
@media #{$bp-below-tablet} { | ||
padding: 32px 16px; | ||
margin: 12px auto; | ||
} | ||
} | ||
button[type="submit"]{ | ||
float: right; | ||
} | ||
.page-card { | ||
border-radius: 20px; | ||
overflow: hidden; | ||
background: $color-white; | ||
} | ||
#professionalLinkForm { | ||
display: none; | ||
} | ||
#teamsRolesForm { | ||
display: none; | ||
} | ||
#celebrationsForm { | ||
display: none; | ||
} | ||
|
||
#linkedinPhotoPermission { | ||
display: none; | ||
} | ||
#githubPhotoPermission { | ||
display: none; | ||
} | ||
#successMessage { | ||
display: none; | ||
} | ||
.form-group { | ||
margin-bottom: 1rem; | ||
} | ||
label { | ||
display: inline-block; | ||
margin-bottom: 0.5rem; | ||
} | ||
.form-control, .date { | ||
display: block; | ||
width: 100%; | ||
height: calc(1.5em + 0.75rem + 2px); | ||
padding: 0.375rem 0.75rem; | ||
font-size: 1rem; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
background-color: $color-white; | ||
background-clip: padding-box; | ||
border-bottom: 1.5px solid $color-black; | ||
border-radius: 0; | ||
box-shadow: inset 0px 0px 0px 0px; | ||
} | ||
.form-control:focus { | ||
outline: none; | ||
border-bottom: 2px solid $color-blue; //need to change color | ||
background-color: $color-grey-light; | ||
} | ||
.container-fluid { | ||
width: 100%; | ||
padding-right: 30px; | ||
padding-left: 30px; | ||
} | ||
p, .question { | ||
margin: 16px 0; | ||
font-weight: 700; | ||
} | ||
.btn-container{ | ||
width: 100%; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
} |
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