Browse Source

Added autoprefixer to css build process

pull/160/head
Foley Lynn 8 years ago
parent
commit
1eede99936
2 changed files with 86 additions and 26 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +85
    -25
      edivorce/apps/core/static/css/main.scss

+ 1
- 1
edivorce/apps/core/static/css/main.css
File diff suppressed because it is too large
View File


+ 85
- 25
edivorce/apps/core/static/css/main.scss View File

@ -1,4 +1,4 @@
// compileCompressed: $1.css
/* compileCompressed: $1.css*/
$body-copy: #494949; $body-copy: #494949;
@ -92,11 +92,13 @@ h4 {
a { a {
color: $brand-links; color: $brand-links;
text-decoration: none; text-decoration: none;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
&:hover, &:hover,
&:focus { &:focus {
color: darken( $brand-links, 10% ); color: darken( $brand-links, 10% );
text-decoration: underline; text-decoration: underline;
-webkit-transition: all 0.1s eease-in-out;
transition: all 0.1s eease-in-out; transition: all 0.1s eease-in-out;
} }
} }
@ -111,7 +113,7 @@ img {
height: auto; height: auto;
} }
// Bootstrap Overrides
/* Bootstrap Overrides*/
.container-wrapper { .container-wrapper {
padding: 40px 0; padding: 40px 0;
@ -208,21 +210,27 @@ img {
text-decoration: inherit; text-decoration: inherit;
padding-left: 10px; padding-left: 10px;
content: "\f077"; content: "\f077";
transform-origin: 65% 50%;
-webkit-transform-origin: 65% 50%;
transform-origin: 65% 50%;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
} }
&:hover, &:hover,
&:focus { &:focus {
color: darken( $brand-links, 10% ); color: darken( $brand-links, 10% );
border-bottom: solid 1px darken( $brand-links, 10% ); border-bottom: solid 1px darken( $brand-links, 10% );
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
} }
} }
margin-bottom: 20px; margin-bottom: 20px;
&.collapsed div:after { &.collapsed div:after {
transform: rotate(-180deg);
transform-style: preserve-3D;
transform-origin: 65% 50%;
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
-webkit-transform-style: preserve-3D;
transform-style: preserve-3D;
-webkit-transform-origin: 65% 50%;
transform-origin: 65% 50%;
} }
} }
@ -248,7 +256,7 @@ img {
} }
// Buttons & Icons
/* Buttons & Icons*/
i.fa { i.fa {
color: $brand-links; color: $brand-links;
@ -272,9 +280,11 @@ i.fa.fa-question-circle {margin-left: 5px;}
background-color: $brand-buttons; background-color: $brand-buttons;
color: #ffffff; color: #ffffff;
margin-bottom: 12px; margin-bottom: 12px;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
&:hover { &:hover {
background-color: darken($brand-buttons, 20%); background-color: darken($brand-buttons, 20%);
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
} }
i.fa { i.fa {
@ -283,9 +293,11 @@ i.fa.fa-question-circle {margin-left: 5px;}
&.btn-success { &.btn-success {
background-color: $color-green; background-color: $color-green;
margin-left: 12px; margin-left: 12px;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
&:hover { &:hover {
background-color: darken($color-green, 20%); background-color: darken($color-green, 20%);
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
} }
} }
@ -303,6 +315,7 @@ i.fa.fa-question-circle {margin-left: 5px;}
height: 60px; height: 60px;
border-radius: 30px; border-radius: 30px;
border: 3px solid $color-blue-lighter; border: 3px solid $color-blue-lighter;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
} }
@ -314,6 +327,7 @@ i.fa.fa-question-circle {margin-left: 5px;}
color: #FFFFFF; color: #FFFFFF;
background-color: $brand-links; background-color: $brand-links;
border: 3px solid $brand-buttons; border: 3px solid $brand-buttons;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
} }
@ -340,6 +354,7 @@ fieldset[disabled] .btn-radio:active,
fieldset[disabled] .btn-radio.active { fieldset[disabled] .btn-radio.active {
background-color: $brand-buttons; background-color: $brand-buttons;
border-color: $brand-buttons; border-color: $brand-buttons;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;
} }
@ -356,16 +371,20 @@ fieldset[disabled] .btn-radio.active {
width: auto; width: auto;
white-space: normal; white-space: normal;
text-transform: none; text-transform: none;
align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
line-height: 1em; line-height: 1em;
max-width: 500px; max-width: 500px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex; display: inline-flex;
text-align: left; text-align: left;
padding: 0 20px; padding: 0 20px;
} }
} }
// Form Elements
/* Form Elements*/
input { input {
border-radius: 10px; border-radius: 10px;
@ -404,7 +423,7 @@ textarea {
line-height: 1em; line-height: 1em;
} }
// Customizations
/* Customizations*/
#top_banner { #top_banner {
background-color: $brand-blue; background-color: $brand-blue;
@ -482,6 +501,8 @@ textarea {
} }
#form_navigation { #form_navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
form { form {
margin-right: 10px; margin-right: 10px;
@ -549,6 +570,7 @@ textarea {
font-size: 24px; font-size: 24px;
&.collapsed { &.collapsed {
margin-bottom: 0; margin-bottom: 0;
-webkit-transition: 0.5s ease-out all;
transition: 0.5s ease-out all; transition: 0.5s ease-out all;
} }
} }
@ -567,37 +589,57 @@ textarea {
/* Column Grid in flexbox */ /* Column Grid in flexbox */
.row-flex { .row-flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
flex-direction: row;
flex-wrap: wrap;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
.col { .col {
flex: 1;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
box-sizing: border-box; box-sizing: border-box;
order: 3;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
} }
.content-column { .content-column {
max-width: 800px; max-width: 800px;
padding: 35px 50px 50px 50px; padding: 35px 50px 50px 50px;
} }
.progress-column { .progress-column {
flex: 0 0 262px;
-webkit-box-flex: 0;
-ms-flex: 0 0 262px;
flex: 0 0 262px;
background-color: $color-grey-lighter; background-color: $color-grey-lighter;
order: 2;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
} }
.dashnav-column { .dashnav-column {
flex: 0 0 262px;
-webkit-box-flex: 0;
-ms-flex: 0 0 262px;
flex: 0 0 262px;
background-color: $brand-titles; background-color: $brand-titles;
} }
.more_information-column { .more_information-column {
flex: 100%;
-webkit-box-flex: 100%;
-ms-flex: 100%;
flex: 100%;
background-color: $color-grey-lighter; background-color: $color-grey-lighter;
box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1); box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
padding: 20px 45px; padding: 20px 45px;
font-size: 14px; font-size: 14px;
line-height: 21px; line-height: 21px;
order: 1;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
.more_information-close { .more_information-close {
float: right; float: right;
font-size: 24px; font-size: 24px;
@ -612,8 +654,12 @@ textarea {
@media (min-width: 992px) { @media (min-width: 992px) {
.more_information-column { .more_information-column {
padding: 45px 20px; padding: 45px 20px;
order: 4;
flex: 0 0 306px;
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
-webkit-box-flex: 0;
-ms-flex: 0 0 306px;
flex: 0 0 306px;
} }
} }
&.intro-page { &.intro-page {
@ -649,10 +695,14 @@ textarea {
margin: 10px; margin: 10px;
} }
.flex-wrapper { .flex-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
margin: 20px 0px; margin: 20px 0px;
text-align: left; text-align: left;
justify-content: space-between;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
font-size: 18px; font-size: 18px;
.flex-column { .flex-column {
width: 45% width: 45%
@ -682,8 +732,12 @@ textarea {
margin-top: 36px; margin-top: 36px;
} }
.progress-question { .progress-question {
display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 60px; height: 60px;
margin-bottom: 12px; margin-bottom: 12px;
padding: 0 12px 0 18px; padding: 0 12px 0 18px;
@ -843,8 +897,10 @@ span.hard-stop {
display: block; display: block;
} }
@media (min-width: 992px) { @media (min-width: 992px) {
-webkit-transition: 0.2s ease-out all;
transition: 0.2s ease-out all; transition: 0.2s ease-out all;
transform: translateX(0);
-webkit-transform: translateX(0);
transform: translateX(0);
} }
} }
.off-canvas { .off-canvas {
@ -852,8 +908,10 @@ span.hard-stop {
display: none; display: none;
} }
@media (min-width: 992px) { @media (min-width: 992px) {
-webkit-transition: 0.2s ease-out all;
transition: 0.2s ease-out all; transition: 0.2s ease-out all;
transform: translateX(306px);
-webkit-transform: translateX(306px);
transform: translateX(306px);
} }
} }
@ -862,6 +920,7 @@ span.hard-stop {
margin-right: 0; margin-right: 0;
} }
@media (min-width: 992px) { @media (min-width: 992px) {
-webkit-transition: 0.2s ease-out all;
transition: 0.2s ease-out all; transition: 0.2s ease-out all;
margin-right: -306px; margin-right: -306px;
} }
@ -871,6 +930,7 @@ span.hard-stop {
margin-right: 0; margin-right: 0;
} }
@media (min-width: 992px) { @media (min-width: 992px) {
-webkit-transition: 0.2s ease-out all;
transition: 0.2s ease-out all; transition: 0.2s ease-out all;
margin-right: 0; margin-right: 0;
} }


Loading…
Cancel
Save