-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix checkout auth page for UI mockups (#68)
- Loading branch information
1 parent
6e145ee
commit 834eda2
Showing
2 changed files
with
98 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/** | ||
* Copyright © 2018 Elastic Path Software Inc. All rights reserved. | ||
* | ||
* This is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This software is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this license. If not, see | ||
* | ||
* https://www.gnu.org/licenses/ | ||
* | ||
* | ||
*/ | ||
|
||
@import './../style/common.less'; | ||
|
||
.checkout-auth-option-list { | ||
h2 { | ||
font-size: 18px; | ||
margin-top: 20px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.control-label { | ||
.required-label { | ||
color: red; | ||
font-size: 16px; | ||
font-weight: bold; | ||
} | ||
} | ||
|
||
.form-control { | ||
display: block; | ||
height: 34px; | ||
padding: 6px 12px; | ||
font-size: 14px; | ||
color: #555555; | ||
background-color: #ffffff; | ||
border: 1px solid #cccccc; | ||
border-radius: 4px; | ||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | ||
} | ||
|
||
.checkout-auth-option-container { | ||
padding-bottom: 40px; | ||
} | ||
|
||
.btn { | ||
text-shadow: none; | ||
color: @complimentBlueColor; | ||
background-color: #ffffff; | ||
border: solid 1px @complimentBlueColor; | ||
border-radius: 0; | ||
text-align: middle; | ||
box-shadow: none; | ||
white-space: nowrap; | ||
height: auto; | ||
display: inline-block; | ||
width: 90px; | ||
height: 30px; | ||
margin-right: 10px; | ||
} | ||
|
||
.btn-primary { | ||
padding: 8px 14px; | ||
width: 100%; | ||
height: 40px; | ||
background-color: @mainBlueColor; | ||
font-size: 12px; | ||
font-weight: bold; | ||
color: #ffffff; | ||
border: 0; | ||
border-radius: 0; | ||
text-transform: uppercase; | ||
margin-top: 10px; | ||
max-width: 280px; | ||
} | ||
} |