(WIP) Replaces less files with sass files

This commit is contained in:
Christopher Neugebauer 2017-06-07 14:23:10 -07:00
parent 869137a84a
commit d7a8490271
8 changed files with 18 additions and 18 deletions

View file

@ -2,7 +2,7 @@ body.account-settings .account-settings,
body.account-password .account-password, body.account-password .account-password,
body.account-delete .account-delete { body.account-delete .account-delete {
z-index: 2; // Place active items above their siblings for proper border styling z-index: 2; // Place active items above their siblings for proper border styling
color: @list-group-active-color; color: $list-group-active-color;
background-color: @list-group-active-bg; background-color: $list-group-active-bg;
border-color: @list-group-active-border; border-color: $list-group-active-border;
} }

View file

@ -16,13 +16,13 @@ p.login-signup {
} }
.feature-columns { .feature-columns {
.make-row(); @include make-row();
> div { > div {
i.fa { i.fa {
margin-bottom: 0.2em; margin-bottom: 0.2em;
} }
.make-sm-column(4); @include make-sm-column(4);
.text-center; .text-center;
margin: 2em 0; margin: 2em 0;
} }
@ -32,9 +32,9 @@ body.reviews.review-list .review-list,
body.reviews.voting-status .voting-status, body.reviews.voting-status .voting-status,
body.reviews.review-results .review-results { body.reviews.review-results .review-results {
z-index: 2; // Place active items above their siblings for proper border styling z-index: 2; // Place active items above their siblings for proper border styling
color: @list-group-active-color; color: $list-group-active-color;
background-color: @list-group-active-bg; background-color: $list-group-active-bg;
border-color: @list-group-active-border; border-color: $list-group-active-border;
} }
body.reviews.voting-status { body.reviews.voting-status {

View file

@ -1,6 +1,6 @@
// General // General
body { body {
padding-top: @navbar-height * 1.2; padding-top: $navbar-height * 1.2;
} }
label:not(.checkbox):not(.radio) { label:not(.checkbox):not(.radio) {
font-weight: bold; font-weight: bold;
@ -26,7 +26,7 @@ header {
} }
a, a:hover, a:visited { a, a:hover, a:visited {
color: @gray-dark; color: $gray-dark;
text-decoration: none; text-decoration: none;
} }
} }
@ -44,7 +44,7 @@ header {
// Markitup // Markitup
div.box-content .markItUpEditor { div.box-content .markItUpEditor {
font-family: @font-family-monospace; font-family: $font-family-monospace;
padding:5px; padding:5px;
width:600px; width:600px;
height:320px; height:320px;
@ -73,7 +73,7 @@ div.box-content .markItUpEditor {
position: relative; position: relative;
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
background-color: @navbar-default-bg; background-color: $navbar-default-bg;
border: 1px solid #D5D5D5; border: 1px solid #D5D5D5;
border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0;
-webkit-background-clip: padding-box; -webkit-background-clip: padding-box;
@ -86,7 +86,7 @@ div.box-content .markItUpEditor {
margin-right: 3em; margin-right: 3em;
font-size: 14px; font-size: 14px;
font-weight: 600; font-weight: 600;
color: @gray-dark; color: $gray-dark;
line-height: 18px; line-height: 18px;
text-shadow: 1px 1px 2px rgba(255,255,255,.5); text-shadow: 1px 1px 2px rgba(255,255,255,.5);
} }
@ -94,7 +94,7 @@ div.box-content .markItUpEditor {
.titled-form-content { .titled-form-content {
border: 1px solid #D5D5D5; border: 1px solid #D5D5D5;
.box-shadow(0 1px 1px rgba(0, 0, 0, 0.1)); @include box-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
background-color: #fff; background-color: #fff;
border-top: none; border-top: none;
padding-top: 20px; padding-top: 20px;
@ -103,7 +103,7 @@ div.box-content .markItUpEditor {
.form-actions { .form-actions {
margin-top: 0px; margin-top: 0px;
border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
.box-shadow(0 1px 1px rgba(0, 0, 0, 0.1)); @include box-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
border: 1px solid #D5D5D5; border: 1px solid #D5D5D5;
border-top: none; border-top: none;
} }

View file

@ -1,3 +0,0 @@
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
@font-family-serif: Georgia, "Times New Roman", Times, serif;
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;

View file

@ -0,0 +1,3 @@
$font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-serif: Georgia, "Times New Roman", Times, serif;
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;