Merge remote-tracking branch 'origin/master' into will/combine-reg-login-form
This commit is contained in:
@@ -11,6 +11,7 @@ class ECommerce
|
||||
# gather elements
|
||||
@$list_purchase_csv_btn = @$section.find("input[name='list-purchase-transaction-csv']'")
|
||||
@$list_sale_csv_btn = @$section.find("input[name='list-sale-csv']'")
|
||||
@$list_order_sale_csv_btn = @$section.find("input[name='list-order-sale-csv']'")
|
||||
@$download_company_name = @$section.find("input[name='download_company_name']'")
|
||||
@$active_company_name = @$section.find("input[name='active_company_name']'")
|
||||
@$spent_company_name = @$section.find('input[name="spent_company_name"]')
|
||||
@@ -35,6 +36,10 @@ class ECommerce
|
||||
url += '/csv'
|
||||
location.href = url
|
||||
|
||||
@$list_order_sale_csv_btn.click (e) =>
|
||||
url = @$list_order_sale_csv_btn.data 'endpoint'
|
||||
location.href = url
|
||||
|
||||
@$download_coupon_codes.click (e) =>
|
||||
url = @$download_coupon_codes.data 'endpoint'
|
||||
location.href = url
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-weight: 300;
|
||||
src: url('../../fonts/OpenSans/OpenSans-Light-webfont.eot?') format('eot'),
|
||||
url('../../fonts/OpenSans/OpenSans-Light-webfont.woff') format('woff'),
|
||||
url('../../fonts/OpenSans/OpenSans-Light-webfont.ttf') format('truetype');
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
background: -webkit-radial-gradient(center, #fff, #e6e6e6);
|
||||
@@ -23,4 +31,4 @@ h1 {
|
||||
line-height: 36px;
|
||||
color: #666;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="css/reset.css">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
</head>
|
||||
@@ -18,4 +17,4 @@
|
||||
</h1>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -55,6 +55,15 @@ span {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-dark-grey {
|
||||
color: $dark-gray1;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
p + p, ul + p, ol + p {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
@@ -428,3 +428,14 @@ $header-sans-serif: 'Open Sans', Arial, Helvetica, sans-serif;
|
||||
// SPLINT: colors
|
||||
|
||||
$msg-bg: $action-primary-bg;
|
||||
|
||||
// New Shopping Cart
|
||||
|
||||
$dark-gray1: #4a4a4a;
|
||||
$light-gray1: #f2f2f2;
|
||||
$light-gray2: #ababab;
|
||||
$dark-gray2: #979797;
|
||||
$blue1: #4A90E2;
|
||||
$blue2: #00A1E5;
|
||||
$green1: #61A12E;
|
||||
$red1: #D0021B;
|
||||
|
||||
@@ -1144,6 +1144,9 @@ input[name="subject"] {
|
||||
|
||||
}
|
||||
#e-commerce{
|
||||
input[name='list-order-sale-csv'] {
|
||||
margin-right: 14px;
|
||||
}
|
||||
input {
|
||||
margin-bottom: 1em;
|
||||
line-height: 1.3em;
|
||||
@@ -1292,22 +1295,20 @@ input[name="subject"] {
|
||||
width: 650px;
|
||||
margin-left: -325px;
|
||||
border-radius: 2px;
|
||||
input[type="submit"]#update_coupon_button{
|
||||
@include button(simple, $blue);
|
||||
@extend .button-reset;
|
||||
}
|
||||
input[type="submit"]#add_coupon_button{
|
||||
input[type="button"]#update_coupon_button, input[type="button"]#add_coupon_button,
|
||||
input[type="button"]#set_course_button {
|
||||
@include button(simple, $blue);
|
||||
@extend .button-reset;
|
||||
display: block;
|
||||
height: auto;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
white-space: normal;
|
||||
}
|
||||
input[name="generate-registration-codes-csv"]{
|
||||
@include button(simple, $blue);
|
||||
@extend .button-reset;
|
||||
}
|
||||
input[type="submit"]#set_course_button{
|
||||
@include button(simple, $blue);
|
||||
@extend .button-reset;
|
||||
}
|
||||
.modal-form-error {
|
||||
box-shadow: inset 0 -1px 2px 0 #f3d9db;
|
||||
-webkit-box-sizing: border-box;
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
font-size: 1.5em;
|
||||
color: $base-font-color;
|
||||
}
|
||||
|
||||
|
||||
.cart-table {
|
||||
width: 100%;
|
||||
tr:nth-child(even){
|
||||
@@ -66,7 +66,7 @@
|
||||
th {
|
||||
text-align: left;
|
||||
border-bottom: 1px solid $border-color-1;
|
||||
|
||||
|
||||
&.qty {
|
||||
width: 100px;
|
||||
}
|
||||
@@ -87,7 +87,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.cart-items {
|
||||
td {
|
||||
padding: 10px 0px;
|
||||
@@ -115,7 +115,7 @@
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.cart-totals {
|
||||
td {
|
||||
&.cart-total-cost {
|
||||
@@ -127,10 +127,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
table.order-receipt {
|
||||
width: 100%;
|
||||
|
||||
|
||||
.order-number {
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -147,7 +147,7 @@
|
||||
th {
|
||||
text-align: left;
|
||||
padding: 25px 0 15px 0;
|
||||
|
||||
|
||||
&.qty {
|
||||
width: 50px;
|
||||
}
|
||||
@@ -210,7 +210,7 @@
|
||||
}
|
||||
}
|
||||
.enrollment-text {
|
||||
color: #4A4A46;
|
||||
color: #9b9b93;
|
||||
font-family: 'Open Sans',Verdana,Geneva,sans;
|
||||
line-height: normal;
|
||||
a {
|
||||
@@ -264,4 +264,655 @@
|
||||
text-shadow: 0 1px 0 #00A1E5;
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shopping-cart{
|
||||
a.blue{
|
||||
display: inline-block;
|
||||
background: $blue2;
|
||||
color: white;
|
||||
padding: 20px 40px;
|
||||
border-radius: 3px;
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
margin: 10px 0px 20px;
|
||||
&:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
.relative{
|
||||
position: relative;
|
||||
}
|
||||
input[type="text"], input[type="email"] , select{
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-style: normal;
|
||||
border: 2px solid $dark-gray2;
|
||||
height: auto;
|
||||
padding: 8px 12px;
|
||||
font-weight: 600;
|
||||
width: 260px;
|
||||
font-size: 16px;
|
||||
&:focus{
|
||||
border-color: $dark-gray2;
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
}
|
||||
&.error{
|
||||
border-color: $red1;
|
||||
}
|
||||
}
|
||||
.hidden{display: none;}
|
||||
.show{display: inline-block;}
|
||||
h1{
|
||||
font-size: 24px;
|
||||
color: $dark-gray1;
|
||||
text-align: left;
|
||||
padding: 15px 0px;
|
||||
margin: 10px 0 0 0;
|
||||
letter-spacing: 0px;
|
||||
}
|
||||
ul.steps{
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
border-top: 3px solid $light-gray1;
|
||||
border-bottom: 3px solid $light-gray1;
|
||||
li{
|
||||
display: inline-block;
|
||||
padding: 26px 30px;
|
||||
margin: 0px 30px;
|
||||
font-size: 20px;
|
||||
font-weight: 100;
|
||||
position: relative;
|
||||
color: $dark-gray1;
|
||||
&.active{font-weight: 400; border-bottom: 3px solid $light-gray1;}
|
||||
&:first-child {padding-left: 30px;margin-left: 0;}
|
||||
&:last-child {
|
||||
padding-right: 30px;margin-right: 0;
|
||||
&:after{display: none;}
|
||||
}
|
||||
&:after{
|
||||
content: "\f178";
|
||||
position: absolute;
|
||||
font-family: FontAwesome;
|
||||
right: -40px;
|
||||
color: #ddd;
|
||||
font-weight: 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
hr{border-top: 1px solid $dark-gray2;}
|
||||
.user-data{
|
||||
margin: 20px 0px;
|
||||
.image{
|
||||
width: 220px;
|
||||
float: left;
|
||||
img{
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
.data-input{
|
||||
width: calc(100% - 245px);
|
||||
float: left;
|
||||
margin-left: 25px;
|
||||
h3, h3 span{
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-size: 16px;
|
||||
text-transform: uppercase;
|
||||
color: $light-gray2;
|
||||
padding: 0;
|
||||
}
|
||||
h1, h1 span{
|
||||
font-size: 24px;
|
||||
color: $dark-gray1;
|
||||
padding: 0 0 10px 0;
|
||||
text-transform: capitalize;
|
||||
span{font-size: 16px;}
|
||||
}
|
||||
hr{border-top: 1px solid $dark-gray2;}
|
||||
.three-col{
|
||||
.col-1{
|
||||
width: 450px;
|
||||
float: left;
|
||||
font-size: 16px;
|
||||
text-transform: uppercase;
|
||||
color: $light-gray2;
|
||||
.price{
|
||||
span{
|
||||
color: $dark-gray1;
|
||||
font-size: 24px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
&.green{color: $green1;}
|
||||
.line-through{text-decoration: line-through;}
|
||||
}
|
||||
}
|
||||
.col-2{
|
||||
width: 350px;
|
||||
float: left;
|
||||
line-height: 44px;
|
||||
text-transform: uppercase;
|
||||
color: $light-gray2;
|
||||
.numbers-row{
|
||||
position: relative;
|
||||
label{
|
||||
font-size: 16px;
|
||||
text-transform: uppercase;
|
||||
color: $light-gray2;
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
.counter{
|
||||
margin-left: 25px;
|
||||
border-radius: 3px;
|
||||
padding: 6px 30px 6px 10px;
|
||||
display: inline-block;
|
||||
border: 2px solid $dark-gray2;
|
||||
input[type="text"]{
|
||||
width: 75px;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
color: #666;
|
||||
font-size: 25px;
|
||||
font-style: normal;
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-weight: 600;
|
||||
padding: 8px 0;
|
||||
height: auto;
|
||||
text-align: center;
|
||||
&:focus{
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.button{
|
||||
position: absolute;
|
||||
background: none;
|
||||
margin-left: -30px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
height: 17px;
|
||||
i{
|
||||
color: $dark-gray2;
|
||||
font-size: 24px;
|
||||
span{display: none;}
|
||||
}
|
||||
&.inc{top: 9px;}
|
||||
&.dec{top: 30px;height: 22px;}
|
||||
}
|
||||
&.disabled{
|
||||
.counter{
|
||||
border: 2px solid #CCCCCC;
|
||||
&:hover{
|
||||
cursor: not-allowed;
|
||||
}
|
||||
input{
|
||||
color: #CCC;
|
||||
}
|
||||
}
|
||||
.button{
|
||||
i{
|
||||
color: #ccc;
|
||||
}
|
||||
}
|
||||
}
|
||||
.updateBtn{
|
||||
display: inline-block;
|
||||
float: right;
|
||||
font-size: 15px;
|
||||
padding: 25px 35px 25px 0;
|
||||
&:focus{
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
span.error-text{
|
||||
display: block;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
}
|
||||
.disable-numeric-counter{
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
.col-3{
|
||||
width: 100px;
|
||||
float: right;
|
||||
a.btn-remove{
|
||||
float: right;
|
||||
opacity: 0.8;
|
||||
i{
|
||||
color: $dark-gray2;
|
||||
font-size: 24PX;
|
||||
line-height: 40px;
|
||||
}
|
||||
&:hover{text-decoration: none;opacity: 1;}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.discount{
|
||||
border-bottom: 2px solid $light-gray1;
|
||||
border-top: 2px solid $light-gray1;
|
||||
margin: 20px 0;
|
||||
padding: 17px 20px 15px;
|
||||
min-height: 45px;
|
||||
.code-text{
|
||||
a{
|
||||
color: $blue1;
|
||||
font-size: 18px;
|
||||
text-transform: lowercase;
|
||||
font-weight: 600;
|
||||
display: inline-block;
|
||||
padding: 10px 0px;
|
||||
cursor: pointer;
|
||||
}
|
||||
span{
|
||||
display: inline-block;
|
||||
padding: 9px 0px;
|
||||
b{
|
||||
font-weight: 600;
|
||||
font-size: 24px;
|
||||
padding-left: 20px;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.code-input{
|
||||
display: inline-block;
|
||||
input[type="text"]{
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-style: normal;
|
||||
border: 2px solid $dark-gray2;
|
||||
height: auto;
|
||||
padding: 8px 12px;
|
||||
font-weight: 600;
|
||||
width: 260px;
|
||||
&:focus{
|
||||
border-color: $dark-gray2;
|
||||
box-shadow: none;
|
||||
}
|
||||
&.error{
|
||||
border-color: $red1;
|
||||
}
|
||||
}
|
||||
.error-text{
|
||||
color: $red1;
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
input[type="submit"]{
|
||||
padding: 9px 35px;
|
||||
}
|
||||
}
|
||||
.code-applied{
|
||||
display: inline-block;
|
||||
.green{
|
||||
color: $green1;
|
||||
font-weight: 600;
|
||||
margin-right: 20px;
|
||||
}
|
||||
input[type="submit"]{
|
||||
padding: 9px 35px;
|
||||
background: white;
|
||||
border: 2px solid $dark-gray2;
|
||||
color: $dark-gray2;
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
&:hover{
|
||||
background: white;
|
||||
color: $dark-gray1;
|
||||
border: 2px solid $dark-gray2;
|
||||
}
|
||||
}
|
||||
}
|
||||
input[type="submit"]{
|
||||
width: auto;
|
||||
padding: 7px 20px;
|
||||
height: auto;
|
||||
float: none;
|
||||
font-size: 16px;
|
||||
letter-spacing: 0;
|
||||
font-weight: 600;
|
||||
&:hover{
|
||||
background: #1F8FC2;
|
||||
border: 1px solid transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.col-two{
|
||||
overflow: hidden;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 2px solid #f2f2f2;
|
||||
.row-inside {
|
||||
float: left;
|
||||
width: 50%;
|
||||
padding: 10px 0;
|
||||
b{
|
||||
font-size: 14px;
|
||||
width: 190px;
|
||||
display: inline-block;
|
||||
margin-right: 20px;
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
vertical-align: top;
|
||||
}
|
||||
label{
|
||||
width: 300px;
|
||||
margin: 0px;
|
||||
display: inline-block;
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-style: normal;
|
||||
font-size: 14px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
.col-1{
|
||||
width: 35%;
|
||||
float: left;
|
||||
span.radio-group{
|
||||
display: inline-block;
|
||||
border: 2px solid #979797;
|
||||
border-radius: 3px;
|
||||
margin: 10px 0;
|
||||
margin-left: 5px;
|
||||
&:first-child{
|
||||
margin-left: 15px;
|
||||
}
|
||||
&.blue{
|
||||
border-color: $blue2;
|
||||
label{
|
||||
color: $blue2;
|
||||
}
|
||||
}
|
||||
label{
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
color: $dark-gray2;
|
||||
font-weight: 400;
|
||||
padding: 8px 15px 8px 6px;
|
||||
display: inline-block;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
input[type="radio"]{
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
.col-2{
|
||||
width: 65%;
|
||||
float: right;
|
||||
input[type="submit"]{
|
||||
width: auto;
|
||||
padding: 18px 60px 22px 30px;
|
||||
height: auto;
|
||||
font-size: 24px;
|
||||
letter-spacing: 0;
|
||||
font-weight: 600;
|
||||
margin-left: 15px;
|
||||
&#register{
|
||||
padding: 18px 30px;
|
||||
}
|
||||
}
|
||||
p{
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
padding: 13px 0;
|
||||
text-align: right;
|
||||
}
|
||||
form{
|
||||
position: relative;
|
||||
}
|
||||
i.icon-caret-right{
|
||||
position: absolute;
|
||||
right: 30px;
|
||||
top: 25px;
|
||||
color: white;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
label.pull-right{
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-style: normal;
|
||||
text-align: right;
|
||||
padding: 10px 25px 10px;
|
||||
display: inline-block;
|
||||
float: right;
|
||||
line-height: 20px;
|
||||
color: $dark-gray1;
|
||||
}
|
||||
}
|
||||
}
|
||||
.disclaimer{
|
||||
color: $light-gray2;
|
||||
padding: 10px 0px;
|
||||
text-align: right;
|
||||
font-weight: 300;
|
||||
}
|
||||
h3{
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
padding: 30px 20px;
|
||||
color: $dark-gray1;
|
||||
}
|
||||
.billing-data{
|
||||
display: table;
|
||||
width: 100%;
|
||||
h3{
|
||||
padding: 12px 0px;
|
||||
color: $dark-gray1;
|
||||
font-size: 17px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.row{
|
||||
display: table-row;
|
||||
}
|
||||
.col-half{
|
||||
width: 45%;
|
||||
float: left;
|
||||
background: $light-gray1;
|
||||
padding: 20px;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 15px;
|
||||
min-height: 240px;
|
||||
&:nth-child(even){
|
||||
margin-left: 30px;
|
||||
}
|
||||
.data-group{
|
||||
margin-bottom: 15px;
|
||||
label{
|
||||
display: block;
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
color: $dark-gray2;
|
||||
}
|
||||
input{width: 100%;margin-bottom: 5px;}
|
||||
&:nth-child(4n){
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.error-text{
|
||||
color: $red1;
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.gray-bg{
|
||||
background: $light-gray1;
|
||||
border-radius: 3px;
|
||||
padding: 20px 20px 20px 30px;
|
||||
margin: 20px 0;
|
||||
overflow: hidden;
|
||||
.message-left{
|
||||
float: left;
|
||||
line-height: 24px;
|
||||
color: $dark-gray1;
|
||||
b{
|
||||
text-transform: capitalize;
|
||||
}
|
||||
a.blue{
|
||||
margin:0 0 0 20px;
|
||||
i{
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.bordered-bar{
|
||||
border-bottom: 2px solid $light-gray1;
|
||||
border-top: 2px solid $light-gray1;
|
||||
margin-bottom: 20px;
|
||||
padding: 20px;
|
||||
h2{
|
||||
color: $dark-gray1;
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-weight: bold;
|
||||
margin-bottom: 0;
|
||||
font-size: 17px;
|
||||
span{
|
||||
padding-left: 60px;
|
||||
text-transform: capitalize;
|
||||
.blue-link{
|
||||
color: $blue2;
|
||||
font-size: 14px;
|
||||
&:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.pattern{
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px;
|
||||
padding:20px;
|
||||
color: $dark-gray1;
|
||||
}
|
||||
hr.border{
|
||||
border-top: 2px solid $light-gray1;
|
||||
}
|
||||
.no-border{border: none !important; }
|
||||
table.course-receipt{
|
||||
width: 94%;
|
||||
margin: auto;
|
||||
margin-bottom: 27px;
|
||||
thead{
|
||||
th{
|
||||
color: $light-gray2;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
padding: 8px 0;
|
||||
border-bottom: 1px solid $dark-gray2;
|
||||
&:first-child{
|
||||
text-align: left;
|
||||
}
|
||||
&:last-child{
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
tr{
|
||||
border-bottom: 1px solid $light-gray1;
|
||||
&:last-child{
|
||||
border-bottom: none;
|
||||
}
|
||||
td{
|
||||
padding: 15px 0;
|
||||
text-align: center;
|
||||
color: $dark-gray1;
|
||||
width: 33.33333%;
|
||||
|
||||
&:first-child{
|
||||
text-align: left;
|
||||
font-size: 18px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
&:last-child{
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.empty-cart{
|
||||
padding: 20px 0px;
|
||||
background: $light-gray1;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
margin: 20px 0px;
|
||||
h2{
|
||||
font-size: 24PX;
|
||||
font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0;
|
||||
color: #9b9b9b;
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
text-transform: initial;
|
||||
}
|
||||
a.blue{
|
||||
display: inline-block;
|
||||
background: $blue2;
|
||||
color: white;
|
||||
padding: 20px 40px;
|
||||
border-radius: 3px;
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
margin: 10px 0px 20px;
|
||||
&:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Print
|
||||
|
||||
@media print{
|
||||
a[href]:after {
|
||||
content: none !important;
|
||||
}
|
||||
ul.steps, a.blue.pull-right, .bordered-bar span.pull-right, .left.nav-global.authenticated {
|
||||
display: none;
|
||||
}
|
||||
.shopping-cart{
|
||||
font-size: 14px;
|
||||
padding-right: 40px;
|
||||
.gray-bg{
|
||||
margin: 0;
|
||||
padding: 10px 0 20px 0;
|
||||
background: none;
|
||||
.message-left{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.bordered-bar{
|
||||
h2{
|
||||
font-size: 14px;
|
||||
}
|
||||
span{
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.user-data{
|
||||
.data-input{
|
||||
h1{
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user