Replace single quotes to double quotes on scss files

This commit is contained in:
decabeza
2019-02-11 17:42:58 +01:00
parent 62e53ee6cf
commit acc7cf65e3
14 changed files with 261 additions and 261 deletions

View File

@@ -71,7 +71,7 @@ $color-alert: #a94442;
$black: #222; $black: #222;
$white: #fff; $white: #fff;
$body-font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif !important; $body-font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif !important;
$header-font-family: $body-font-family; $header-font-family: $body-font-family;
@@ -79,24 +79,24 @@ $global-radius: rem-calc(3);
$button-radius: $global-radius; $button-radius: $global-radius;
$font-family-serif: Georgia, 'Times New Roman', Times, serif; $font-family-serif: Georgia, "Times New Roman", Times, serif;
$header-styles: ( $header-styles: (
small: ( small: (
'h1': ('font-size': 34), "h1": ("font-size": 34),
'h2': ('font-size': 24), "h2": ("font-size": 24),
'h3': ('font-size': 20), "h3": ("font-size": 20),
'h4': ('font-size': 18), "h4": ("font-size": 18),
'h5': ('font-size': 16), "h5": ("font-size": 16),
'h6': ('font-size': 14), "h6": ("font-size": 14),
), ),
medium: ( medium: (
'h1': ('font-size': 44), "h1": ("font-size": 44),
'h2': ('font-size': 34), "h2": ("font-size": 34),
'h3': ('font-size': 24), "h3": ("font-size": 24),
'h4': ('font-size': 19), "h4": ("font-size": 19),
'h5': ('font-size': 16), "h5": ("font-size": 16),
'h6': ('font-size': 13), "h6": ("font-size": 13),
), ),
); );

View File

@@ -60,7 +60,7 @@
// 55. Top Bar // 55. Top Bar
// 56. Xy Grid // 56. Xy Grid
@import 'util/util'; @import "util/util";
// 1. Global // 1. Global
// --------- // ---------
@@ -82,7 +82,7 @@ $black: #0a0a0a;
$white: #fefefe; $white: #fefefe;
$body-background: $white; $body-background: $white;
$body-font-color: $black; $body-font-color: $black;
$body-font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; $body-font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
$body-antialiased: true; $body-antialiased: true;
$global-margin: 1rem; $global-margin: 1rem;
$global-padding: 1rem; $global-padding: 1rem;
@@ -124,7 +124,7 @@ $grid-column-gutter: (
medium: 30px, medium: 30px,
); );
$grid-column-align-edge: true; $grid-column-align-edge: true;
$grid-column-alias: 'columns'; $grid-column-alias: "columns";
$block-grid-max: 8; $block-grid-max: 8;
// 4. Base Typography // 4. Base Typography
@@ -133,26 +133,26 @@ $block-grid-max: 8;
$header-font-family: $body-font-family; $header-font-family: $body-font-family;
$header-font-weight: $global-weight-normal; $header-font-weight: $global-weight-normal;
$header-font-style: normal; $header-font-style: normal;
$font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace; $font-family-monospace: Consolas, "Liberation Mono", Courier, monospace;
$header-color: inherit; $header-color: inherit;
$header-lineheight: 1.4; $header-lineheight: 1.4;
$header-margin-bottom: 0.5rem; $header-margin-bottom: 0.5rem;
$header-styles: ( $header-styles: (
small: ( small: (
'h1': ('font-size': 24), "h1": ("font-size": 24),
'h2': ('font-size': 20), "h2": ("font-size": 20),
'h3': ('font-size': 19), "h3": ("font-size": 19),
'h4': ('font-size': 18), "h4": ("font-size": 18),
'h5': ('font-size': 17), "h5": ("font-size": 17),
'h6': ('font-size': 16), "h6": ("font-size": 16),
), ),
medium: ( medium: (
'h1': ('font-size': 48), "h1": ("font-size": 48),
'h2': ('font-size': 40), "h2": ("font-size": 40),
'h3': ('font-size': 31), "h3": ("font-size": 31),
'h4': ('font-size': 25), "h4": ("font-size": 25),
'h5': ('font-size': 20), "h5": ("font-size": 20),
'h6': ('font-size': 16), "h6": ("font-size": 16),
), ),
); );
$header-text-rendering: optimizeLegibility; $header-text-rendering: optimizeLegibility;
@@ -188,7 +188,7 @@ $blockquote-padding: rem-calc(9 20 0 19);
$blockquote-border: 1px solid $medium-gray; $blockquote-border: 1px solid $medium-gray;
$cite-font-size: rem-calc(13); $cite-font-size: rem-calc(13);
$cite-color: $dark-gray; $cite-color: $dark-gray;
$cite-pseudo-content: '\2014 \0020'; $cite-pseudo-content: "\2014 \0020";
$keystroke-font: $font-family-monospace; $keystroke-font: $font-family-monospace;
$keystroke-color: $black; $keystroke-color: $black;
$keystroke-background: $light-gray; $keystroke-background: $light-gray;
@@ -271,8 +271,8 @@ $breadcrumbs-item-color-disabled: $medium-gray;
$breadcrumbs-item-margin: 0.75rem; $breadcrumbs-item-margin: 0.75rem;
$breadcrumbs-item-uppercase: true; $breadcrumbs-item-uppercase: true;
$breadcrumbs-item-separator: true; $breadcrumbs-item-separator: true;
$breadcrumbs-item-separator-item: '/'; $breadcrumbs-item-separator-item: "/";
$breadcrumbs-item-separator-item-rtl: '\\'; $breadcrumbs-item-separator-item-rtl: "\\";
$breadcrumbs-item-separator-color: $medium-gray; $breadcrumbs-item-separator-color: $medium-gray;
// 11. Button // 11. Button
@@ -305,7 +305,7 @@ $button-transition: background-color 0.25s ease-out, color 0.25s ease-out;
$buttongroup-margin: 1rem; $buttongroup-margin: 1rem;
$buttongroup-spacing: 1px; $buttongroup-spacing: 1px;
$buttongroup-child-selector: '.button'; $buttongroup-child-selector: ".button";
$buttongroup-expand-max: 6; $buttongroup-expand-max: 6;
$buttongroup-radius-on-each: true; $buttongroup-radius-on-each: true;
@@ -511,7 +511,7 @@ $offcanvas-transition-length: 0.5s;
$offcanvas-transition-timing: ease; $offcanvas-transition-timing: ease;
$offcanvas-fixed-reveal: true; $offcanvas-fixed-reveal: true;
$offcanvas-exit-background: rgba($white, 0.25); $offcanvas-exit-background: rgba($white, 0.25);
$maincontent-class: 'off-canvas-content'; $maincontent-class: "off-canvas-content";
// 26. Orbit // 26. Orbit
// --------- // ---------

View File

@@ -431,7 +431,7 @@ $sidebar-active: #f4fcd0;
> a::after { > a::after {
border: 0; border: 0;
content: '\61' !important; content: "\61" !important;
font-family: "icons" !important; font-family: "icons" !important;
height: auto; height: auto;
position: absolute !important; position: absolute !important;
@@ -1113,7 +1113,7 @@ table {
} }
.map-icon::after { .map-icon::after {
content: ''; content: "";
width: 14px; width: 14px;
height: 14px; height: 14px;
margin: 8px 0 0 8px; margin: 8px 0 0 8px;
@@ -1173,7 +1173,7 @@ table {
&.enabled::before, &.enabled::before,
&.disabled::before { &.disabled::before {
font-family: 'icons'; font-family: "icons";
left: 0; left: 0;
position: absolute; position: absolute;
} }
@@ -1183,7 +1183,7 @@ table {
&::before { &::before {
color: $check; color: $check;
content: '\6c'; content: "\6c";
} }
} }
@@ -1192,7 +1192,7 @@ table {
&::before { &::before {
color: #000; color: #000;
content: '\76'; content: "\76";
} }
} }
} }

View File

@@ -14,7 +14,7 @@
} }
.annotator-adder { .annotator-adder {
background-image: image-url('annotator_adder.png'); background-image: image-url("annotator_adder.png");
margin-top: -52px; margin-top: -52px;
} }
@@ -43,7 +43,7 @@
.annotator-widget::after, .annotator-widget::after,
.annotator-editor.annotator-invert-y .annotator-widget::after { .annotator-editor.annotator-invert-y .annotator-widget::after {
background-image: image-url('annotator_items.png'); background-image: image-url("annotator_items.png");
} }
.annotator-editor a, .annotator-editor a,

View File

@@ -1,23 +1,23 @@
@import 'social-share-button'; @import "social-share-button";
@import 'foundation_and_overrides'; @import "foundation_and_overrides";
@import 'fonts'; @import "fonts";
@import 'icons'; @import "icons";
@import 'mixins'; @import "mixins";
@import 'admin'; @import "admin";
@import 'layout'; @import "layout";
@import 'participation'; @import "participation";
@import 'milestones'; @import "milestones";
@import 'pages'; @import "pages";
@import 'legislation'; @import "legislation";
@import 'legislation_process'; @import "legislation_process";
@import 'community'; @import "community";
@import 'custom'; @import "custom";
@import 'c3'; @import "c3";
@import 'annotator.min'; @import "annotator.min";
@import 'annotator_overrides'; @import "annotator_overrides";
@import 'jquery-ui/datepicker'; @import "jquery-ui/datepicker";
@import 'datepicker_overrides'; @import "datepicker_overrides";
@import 'jquery-ui/autocomplete'; @import "jquery-ui/autocomplete";
@import 'autocomplete_overrides'; @import "autocomplete_overrides";
@import 'jquery-ui/sortable'; @import "jquery-ui/sortable";
@import 'leaflet'; @import "leaflet";

View File

@@ -51,11 +51,11 @@
} }
.ui-datepicker-prev::after { .ui-datepicker-prev::after {
content: '\62'; content: "\62";
} }
.ui-datepicker-next::after { .ui-datepicker-next::after {
content: '\63'; content: "\63";
} }
table { table {

View File

@@ -8,88 +8,88 @@
// - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - -
@font-face { @font-face {
font-family: 'Source Sans Pro'; font-family: "Source Sans Pro";
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
src: font-url('sourcesanspro-light-webfont.eot'); src: font-url("sourcesanspro-light-webfont.eot");
src: font-url('sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'), src: font-url("sourcesanspro-light-webfont.eot?#iefix") format("embedded-opentype"),
font-url('sourcesanspro-light-webfont.woff2') format('woff2'), font-url("sourcesanspro-light-webfont.woff2") format("woff2"),
font-url('sourcesanspro-light-webfont.woff') format('woff'), font-url("sourcesanspro-light-webfont.woff") format("woff"),
font-url('sourcesanspro-light-webfont.ttf') format('truetype'), font-url("sourcesanspro-light-webfont.ttf") format("truetype"),
font-url('sourcesanspro-light-webfont.svg#source_sans_prolight') format('svg'); font-url("sourcesanspro-light-webfont.svg#source_sans_prolight") format("svg");
} }
@font-face { @font-face {
font-family: 'Source Sans Pro'; font-family: "Source Sans Pro";
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: font-url('sourcesanspro-regular-webfont.eot'); src: font-url("sourcesanspro-regular-webfont.eot");
src: font-url('sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'), src: font-url("sourcesanspro-regular-webfont.eot?#iefix") format("embedded-opentype"),
font-url('sourcesanspro-regular-webfont.woff2') format('woff2'), font-url("sourcesanspro-regular-webfont.woff2") format("woff2"),
font-url('sourcesanspro-regular-webfont.woff') format('woff'), font-url("sourcesanspro-regular-webfont.woff") format("woff"),
font-url('sourcesanspro-regular-webfont.ttf') format('truetype'), font-url("sourcesanspro-regular-webfont.ttf") format("truetype"),
font-url('sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg'); font-url("sourcesanspro-regular-webfont.svg#source_sans_proregular") format("svg");
} }
@font-face { @font-face {
font-family: 'Source Sans Pro'; font-family: "Source Sans Pro";
font-style: italic; font-style: italic;
font-weight: 400; font-weight: 400;
src: font-url('sourcesanspro-italic-webfont.eot'); src: font-url("sourcesanspro-italic-webfont.eot");
src: font-url('sourcesanspro-italic-webfont.eot?#iefix') format('embedded-opentype'), src: font-url("sourcesanspro-italic-webfont.eot?#iefix") format("embedded-opentype"),
font-url('sourcesanspro-italic-webfont.woff2') format('woff2'), font-url("sourcesanspro-italic-webfont.woff2") format("woff2"),
font-url('sourcesanspro-italic-webfont.woff') format('woff'), font-url("sourcesanspro-italic-webfont.woff") format("woff"),
font-url('sourcesanspro-italic-webfont.ttf') format('truetype'), font-url("sourcesanspro-italic-webfont.ttf") format("truetype"),
font-url('sourcesanspro-italic-webfont.svg#source_sans_proitalic') format('svg'); font-url("sourcesanspro-italic-webfont.svg#source_sans_proitalic") format("svg");
} }
@font-face { @font-face {
font-family: 'Source Sans Pro'; font-family: "Source Sans Pro";
font-style: normal; font-style: normal;
font-weight: 700; font-weight: 700;
src: font-url('sourcesanspro-bold-webfont.eot'); src: font-url("sourcesanspro-bold-webfont.eot");
src: font-url('sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'), src: font-url("sourcesanspro-bold-webfont.eot?#iefix") format("embedded-opentype"),
font-url('sourcesanspro-bold-webfont.woff2') format('woff2'), font-url("sourcesanspro-bold-webfont.woff2") format("woff2"),
font-url('sourcesanspro-bold-webfont.woff') format('woff'), font-url("sourcesanspro-bold-webfont.woff") format("woff"),
font-url('sourcesanspro-bold-webfont.ttf') format('truetype'), font-url("sourcesanspro-bold-webfont.ttf") format("truetype"),
font-url('sourcesanspro-bold-webfont.svg#source_sans_probold') format('svg'); font-url("sourcesanspro-bold-webfont.svg#source_sans_probold") format("svg");
} }
// 02. Lato // 02. Lato
// - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - -
@font-face { @font-face {
font-family: 'Lato'; font-family: "Lato";
src: font-url('lato-light.eot'); src: font-url("lato-light.eot");
src: font-url('lato-light.eot?#iefix') format('embedded-opentype'), src: font-url("lato-light.eot?#iefix") format("embedded-opentype"),
font-url('lato-light.woff2') format('woff2'), font-url("lato-light.woff2") format("woff2"),
font-url('lato-light.woff') format('woff'), font-url("lato-light.woff") format("woff"),
font-url('lato-light.ttf') format('truetype'), font-url("lato-light.ttf") format("truetype"),
font-url('lato-light.svg#latolight') format('svg'); font-url("lato-light.svg#latolight") format("svg");
font-weight: lighter; font-weight: lighter;
font-style: normal; font-style: normal;
} }
@font-face { @font-face {
font-family: 'Lato'; font-family: "Lato";
src: font-url('lato-regular.eot'); src: font-url("lato-regular.eot");
src: font-url('lato-regular.eot?#iefix') format('embedded-opentype'), src: font-url("lato-regular.eot?#iefix") format("embedded-opentype"),
font-url('lato-regular.woff2') format('woff2'), font-url("lato-regular.woff2") format("woff2"),
font-url('lato-regular.woff') format('woff'), font-url("lato-regular.woff") format("woff"),
font-url('lato-regular.ttf') format('truetype'), font-url("lato-regular.ttf") format("truetype"),
font-url('lato-regular.svg#latoregular') format('svg'); font-url("lato-regular.svg#latoregular") format("svg");
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@font-face { @font-face {
font-family: 'Lato'; font-family: "Lato";
src: font-url('lato-bold.eot'); src: font-url("lato-bold.eot");
src: font-url('lato-bold.eot?#iefix') format('embedded-opentype'), src: font-url("lato-bold.eot?#iefix") format("embedded-opentype"),
font-url('lato-bold.woff2') format('woff2'), font-url("lato-bold.woff2") format("woff2"),
font-url('lato-bold.woff') format('woff'), font-url("lato-bold.woff") format("woff"),
font-url('lato-bold.ttf') format('truetype'), font-url("lato-bold.ttf") format("truetype"),
font-url('lato-bold.svg#latobold') format('svg'); font-url("lato-bold.svg#latobold") format("svg");
font-weight: bold; font-weight: bold;
font-style: normal; font-style: normal;
} }

View File

@@ -1,11 +1,11 @@
@charset 'utf-8'; @charset "utf-8";
@import 'settings'; @import "settings";
@import 'consul_settings'; @import "consul_settings";
@import 'custom_settings'; @import "custom_settings";
@import 'foundation'; @import "foundation";
@import 'motion-ui/motion-ui'; @import "motion-ui/motion-ui";
@include foundation-global-styles; @include foundation-global-styles;
// @include foundation-xy-grid-classes; // @include foundation-xy-grid-classes;

View File

@@ -1,12 +1,12 @@
@charset "UTF-8"; @charset "UTF-8";
@font-face { @font-face {
font-family: 'icons'; font-family: "icons";
src: font-url('icons.eot'); src: font-url("icons.eot");
src: font-url('icons.eot?#iefix') format('embedded-opentype'), src: font-url("icons.eot?#iefix") format("embedded-opentype"),
font-url('icons.woff') format('woff'), font-url("icons.woff") format("woff"),
font-url('icons.ttf') format('truetype'), font-url("icons.ttf") format("truetype"),
font-url('icons.svg#icons') format('svg'); font-url("icons.svg#icons") format("svg");
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@@ -38,257 +38,257 @@
} }
.icon-angle-down::before { .icon-angle-down::before {
content: '\61'; content: "\61";
} }
.icon-angle-left::before { .icon-angle-left::before {
content: '\62'; content: "\62";
} }
.icon-angle-right::before { .icon-angle-right::before {
content: '\63'; content: "\63";
} }
.icon-angle-up::before { .icon-angle-up::before {
content: '\64'; content: "\64";
} }
.icon-comments::before { .icon-comments::before {
content: '\65'; content: "\65";
} }
.icon-twitter::before { .icon-twitter::before {
content: '\66'; content: "\66";
} }
.icon-calendar::before { .icon-calendar::before {
content: '\67'; content: "\67";
} }
.icon-debates::before { .icon-debates::before {
content: '\69'; content: "\69";
} }
.icon-unlike::before { .icon-unlike::before {
content: '\6a'; content: "\6a";
} }
.icon-like::before { .icon-like::before {
content: '\6b'; content: "\6b";
} }
.icon-check::before { .icon-check::before {
content: '\6c'; content: "\6c";
} }
.icon-edit::before { .icon-edit::before {
content: '\6d'; content: "\6d";
} }
.icon-user::before { .icon-user::before {
content: '\6f'; content: "\6f";
} }
.icon-settings::before { .icon-settings::before {
content: '\71'; content: "\71";
} }
.icon-stats::before { .icon-stats::before {
content: '\72'; content: "\72";
} }
.icon-proposals::before { .icon-proposals::before {
content: '\68'; content: "\68";
} }
.icon-organizations::before { .icon-organizations::before {
content: '\73'; content: "\73";
} }
.icon-deleted::before { .icon-deleted::before {
content: '\74'; content: "\74";
} }
.icon-tag::before { .icon-tag::before {
content: '\75'; content: "\75";
} }
.icon-eye::before { .icon-eye::before {
content: '\70'; content: "\70";
} }
.icon-x::before { .icon-x::before {
content: '\76'; content: "\76";
} }
.icon-flag::before { .icon-flag::before {
content: '\77'; content: "\77";
} }
.icon-comment::before { .icon-comment::before {
content: '\79'; content: "\79";
} }
.icon-reply::before { .icon-reply::before {
content: '\7a'; content: "\7a";
} }
.icon-facebook::before { .icon-facebook::before {
content: '\41'; content: "\41";
} }
.icon-google-plus::before { .icon-google-plus::before {
content: '\42'; content: "\42";
} }
.icon-search::before { .icon-search::before {
content: '\45'; content: "\45";
} }
.icon-external::before { .icon-external::before {
content: '\46'; content: "\46";
} }
.icon-video::before { .icon-video::before {
content: '\44'; content: "\44";
} }
.icon-document::before { .icon-document::before {
content: '\47'; content: "\47";
} }
.icon-print::before { .icon-print::before {
content: '\48'; content: "\48";
} }
.icon-blog::before { .icon-blog::before {
content: '\4a'; content: "\4a";
} }
.icon-box::before { .icon-box::before {
content: '\49'; content: "\49";
} }
.icon-youtube::before { .icon-youtube::before {
content: '\4b'; content: "\4b";
} }
.icon-letter::before { .icon-letter::before {
content: '\4c'; content: "\4c";
} }
.icon-circle::before { .icon-circle::before {
content: '\43'; content: "\43";
} }
.icon-circle-o::before { .icon-circle-o::before {
content: '\4d'; content: "\4d";
} }
.icon-help::before { .icon-help::before {
content: '\4e'; content: "\4e";
} }
.icon-budget::before { .icon-budget::before {
content: '\53'; content: "\53";
} }
.icon-notification::before { .icon-notification::before {
content: '\6e'; content: "\6e";
} }
.icon-no-notification::before { .icon-no-notification::before {
content: '\78'; content: "\78";
} }
.icon-whatsapp::before { .icon-whatsapp::before {
content: '\50'; content: "\50";
} }
.icon-zip::before { .icon-zip::before {
content: '\4f'; content: "\4f";
} }
.icon-banner::before { .icon-banner::before {
content: '\51'; content: "\51";
} }
.icon-arrow-down::before { .icon-arrow-down::before {
content: '\52'; content: "\52";
} }
.icon-arrow-left::before { .icon-arrow-left::before {
content: '\54'; content: "\54";
} }
.icon-arrow-right::before { .icon-arrow-right::before {
content: '\55'; content: "\55";
} }
.icon-check-circle::before { .icon-check-circle::before {
content: '\56'; content: "\56";
} }
.icon-arrow-top::before { .icon-arrow-top::before {
content: '\57'; content: "\57";
} }
.icon-checkmark-circle::before { .icon-checkmark-circle::before {
content: '\59'; content: "\59";
} }
.icon-minus-square::before { .icon-minus-square::before {
content: '\58'; content: "\58";
} }
.icon-plus-square::before { .icon-plus-square::before {
content: '\5a'; content: "\5a";
} }
.icon-expand::before { .icon-expand::before {
content: '\30'; content: "\30";
} }
.icon-telegram::before { .icon-telegram::before {
content: '\31'; content: "\31";
} }
.icon-instagram::before { .icon-instagram::before {
content: '\32'; content: "\32";
} }
.icon-image::before { .icon-image::before {
content: '\33'; content: "\33";
} }
.icon-search-plus::before { .icon-search-plus::before {
content: '\34'; content: "\34";
} }
.icon-search-minus::before { .icon-search-minus::before {
content: '\35'; content: "\35";
} }
.icon-calculator::before { .icon-calculator::before {
content: '\36'; content: "\36";
} }
.icon-map-marker::before { .icon-map-marker::before {
content: '\37'; content: "\37";
} }
.icon-user-plus::before { .icon-user-plus::before {
content: '\38'; content: "\38";
} }
.icon-file-text-o::before { .icon-file-text-o::before {
content: '\39'; content: "\39";
} }
.icon-file-text::before { .icon-file-text::before {
content: '\21'; content: "\21";
} }
.icon-bars::before { .icon-bars::before {
content: '\22'; content: "\22";
} }

View File

@@ -372,7 +372,7 @@ a {
text-decoration: none; text-decoration: none;
} }
&[aria-selected='true'], &[aria-selected="true"],
&.is-active { &.is-active {
border-bottom: 0; border-bottom: 0;
color: $brand; color: $brand;
@@ -382,7 +382,7 @@ a {
background: $brand; background: $brand;
border-bottom: 2px solid $brand; border-bottom: 2px solid $brand;
bottom: 0; bottom: 0;
content: ''; content: "";
left: 0; left: 0;
position: absolute; position: absolute;
width: 100%; width: 100%;
@@ -459,7 +459,7 @@ header {
&::after { &::after {
color: #808080; color: #808080;
content: '\61'; content: "\61";
font-family: "icons" !important; font-family: "icons" !important;
font-size: $small-font-size; font-size: $small-font-size;
pointer-events: none; pointer-events: none;
@@ -501,7 +501,7 @@ header {
a { a {
color: #fff; color: #fff;
display: inline-block; display: inline-block;
font-family: 'Lato' !important; font-family: "Lato" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
font-weight: lighter; font-weight: lighter;
line-height: $line-height * 2; line-height: $line-height * 2;
@@ -646,7 +646,7 @@ header {
display: inline-block; display: inline-block;
&::after { &::after {
content: '|'; content: "|";
} }
&:last-child::after { &:last-child::after {
@@ -794,7 +794,7 @@ footer {
color: $text; color: $text;
.logo a { .logo a {
font-family: 'Lato' !important; font-family: "Lato" !important;
text-decoration: none; text-decoration: none;
&:hover { &:hover {
@@ -906,7 +906,7 @@ footer {
} }
.auth-image { .auth-image {
background: $brand image-url('auth_bg.jpg'); background: $brand image-url("auth_bg.jpg");
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
@@ -1279,7 +1279,7 @@ form {
&::before { &::before {
background: $border; background: $border;
content: ''; content: "";
height: 100%; height: 100%;
left: 7px; left: 7px;
position: absolute; position: absolute;
@@ -1325,14 +1325,14 @@ form {
} }
&::before { &::before {
content: '\43'; content: "\43";
} }
} }
&::before { &::before {
background: #fff; background: #fff;
color: $brand; color: $brand;
content: '\4d'; content: "\4d";
font-family: "icons" !important; font-family: "icons" !important;
font-size: $small-font-size; font-size: $small-font-size;
height: rem-calc(20); height: rem-calc(20);
@@ -1487,7 +1487,7 @@ table {
&::before { &::before {
color: #45b0e3; color: #45b0e3;
content: 'f'; content: "f";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 0; left: 0;
@@ -1507,7 +1507,7 @@ table {
width: $line-height * 2 !important; width: $line-height * 2 !important;
&::before { &::before {
content: 'f'; content: "f";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1530,7 +1530,7 @@ table {
&::before { &::before {
color: #3b5998; color: #3b5998;
content: 'A'; content: "A";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 0; left: 0;
@@ -1550,7 +1550,7 @@ table {
width: rem-calc(48) !important; width: rem-calc(48) !important;
&::before { &::before {
content: 'A'; content: "A";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1573,7 +1573,7 @@ table {
&::before { &::before {
color: #de4c34; color: #de4c34;
content: 'B'; content: "B";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 0; left: 0;
@@ -1593,7 +1593,7 @@ table {
width: $line-height * 2 !important; width: $line-height * 2 !important;
&::before { &::before {
content: 'B'; content: "B";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1616,7 +1616,7 @@ table {
&::before { &::before {
color: #08c; color: #08c;
content: '1'; content: "1";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 0; left: 0;
@@ -1636,7 +1636,7 @@ table {
width: $line-height * 2 !important; width: $line-height * 2 !important;
&::before { &::before {
content: '1'; content: "1";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1689,7 +1689,7 @@ table {
width: $line-height * 2; width: $line-height * 2;
&::before { &::before {
content: 'f'; content: "f";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1714,7 +1714,7 @@ table {
width: rem-calc(48); width: rem-calc(48);
&::before { &::before {
content: 'A'; content: "A";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1739,7 +1739,7 @@ table {
width: rem-calc(48); width: rem-calc(48);
&::before { &::before {
content: 'B'; content: "B";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1764,7 +1764,7 @@ table {
width: $line-height * 2; width: $line-height * 2;
&::before { &::before {
content: '1'; content: "1";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
left: 50%; left: 50%;
@@ -1808,7 +1808,7 @@ table {
top: 24px; top: 24px;
@include breakpoint(medium) { @include breakpoint(medium) {
content: 'c'; content: "c";
} }
} }
} }
@@ -2260,15 +2260,15 @@ table {
@include breakpoint(large) { @include breakpoint(large) {
.banner-img-one { .banner-img-one {
background-image: image-url('banners/banner1.png'); background-image: image-url("banners/banner1.png");
} }
.banner-img-two { .banner-img-two {
background-image: image-url('banners/banner2.png'); background-image: image-url("banners/banner2.png");
} }
.banner-img-three { .banner-img-three {
background-image: image-url('banners/banner3.png'); background-image: image-url("banners/banner3.png");
} }
} }
@@ -2385,7 +2385,7 @@ table {
} }
.card .orbit .orbit-wrapper .truncate { .card .orbit .orbit-wrapper .truncate {
background: image-url('truncate.png'); background: image-url("truncate.png");
background-repeat: repeat-x; background-repeat: repeat-x;
bottom: 0; bottom: 0;
height: rem-calc(20); height: rem-calc(20);
@@ -2668,7 +2668,7 @@ table {
&.score-positive::before, &.score-positive::before,
&.score-negative::before { &.score-negative::before {
font-family: 'icons'; font-family: "icons";
left: 0; left: 0;
position: absolute; position: absolute;
} }
@@ -2678,7 +2678,7 @@ table {
&::before { &::before {
color: $color-success; color: $color-success;
content: '\6c'; content: "\6c";
} }
} }
@@ -2687,7 +2687,7 @@ table {
&::before { &::before {
color: $color-alert; color: $color-alert;
content: '\76'; content: "\76";
} }
} }
} }

View File

@@ -24,7 +24,7 @@
&::before { &::before {
color: #8aa8be; color: #8aa8be;
content: ''; content: "";
padding-right: $line-height / 4; padding-right: $line-height / 4;
vertical-align: text-bottom; vertical-align: text-bottom;
} }
@@ -67,7 +67,7 @@
@include breakpoint(large down) { @include breakpoint(large down) {
&::after { &::after {
content: '\63'; content: "\63";
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
pointer-events: none; pointer-events: none;
@@ -92,7 +92,7 @@
} }
&::after { &::after {
content: ''; content: "";
} }
} }
@@ -138,7 +138,7 @@
} }
&::after { &::after {
content: ''; content: "";
} }
} }
} }
@@ -468,8 +468,8 @@
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
margin-left: rem-calc(-20); margin-left: rem-calc(-20);
font-family: 'icons'; font-family: "icons";
content: '\58'; content: "\58";
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
@@ -478,8 +478,8 @@
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
margin-left: rem-calc(-20); margin-left: rem-calc(-20);
font-family: 'icons'; font-family: "icons";
content: '\5a'; content: "\5a";
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
@@ -507,7 +507,7 @@
.anchor::before { .anchor::before {
display: none; display: none;
content: '#'; content: "#";
color: $text-medium; color: $text-medium;
position: absolute; position: absolute;
left: 0; left: 0;
@@ -759,7 +759,7 @@
display: inline-block; display: inline-block;
&::after { &::after {
content: '|'; content: "|";
color: #838383; color: #838383;
} }
} }
@@ -780,7 +780,7 @@
&::after { &::after {
margin-left: rem-calc(4); margin-left: rem-calc(4);
content: '|'; content: "|";
} }
} }
@@ -830,7 +830,7 @@
&::before { &::before {
margin-right: rem-calc(4); margin-right: rem-calc(4);
content: ''; content: "";
} }
} }
} }
@@ -981,4 +981,4 @@
font-size: rem-calc(20); font-size: rem-calc(20);
margin-top: 0; margin-top: 0;
} }
} }

View File

@@ -47,7 +47,7 @@ $progress-bar-color: #fea230;
&::before { &::before {
background: $budget; background: $budget;
border-radius: rem-calc(20); border-radius: rem-calc(20);
content: ''; content: "";
height: rem-calc(20); height: rem-calc(20);
position: absolute; position: absolute;
top: 5px; top: 5px;
@@ -59,7 +59,7 @@ $progress-bar-color: #fea230;
&::after { &::after {
background: $light-gray; background: $light-gray;
bottom: 100%; bottom: 100%;
content: ''; content: "";
height: 100%; height: 100%;
position: absolute; position: absolute;
top: 25px; top: 25px;

View File

@@ -11,7 +11,7 @@
@mixin logo { @mixin logo {
color: #fff; color: #fff;
display: inline-block; display: inline-block;
font-family: 'Lato' !important; font-family: "Lato" !important;
font-size: rem-calc(24); font-size: rem-calc(24);
font-weight: lighter; font-weight: lighter;

View File

@@ -287,7 +287,7 @@
margin: $line-height / 2 0; margin: $line-height / 2 0;
&::before { &::before {
content: 'l '; content: "l ";
font-family: "icons" !important; font-family: "icons" !important;
} }
} }
@@ -733,7 +733,7 @@
} }
.truncate { .truncate {
background: image-url('truncate.png'); background: image-url("truncate.png");
background-repeat: repeat-x; background-repeat: repeat-x;
bottom: 0; bottom: 0;
height: rem-calc(24); height: rem-calc(24);
@@ -938,7 +938,7 @@
&::before { &::before {
color: $text; color: $text;
font-family: 'icons'; font-family: "icons";
} }
} }
@@ -947,7 +947,7 @@
.button { .button {
&::before { &::before {
content: '\51'; content: "\51";
} }
} }
} }
@@ -957,7 +957,7 @@
.button { .button {
&::before { &::before {
content: '\22'; content: "\22";
} }
} }
} }
@@ -966,8 +966,8 @@
position: relative; position: relative;
&::before { &::before {
content: '\22'; content: "\22";
font-family: 'icons'; font-family: "icons";
left: 0; left: 0;
position: absolute; position: absolute;
top: 6px; top: 6px;
@@ -978,8 +978,8 @@
position: relative; position: relative;
&::before { &::before {
content: '\51'; content: "\51";
font-family: 'icons'; font-family: "icons";
left: 0; left: 0;
position: absolute; position: absolute;
top: 6px; top: 6px;
@@ -990,8 +990,8 @@
color: $brand; color: $brand;
&::after { &::after {
content: '\6c'; content: "\6c";
font-family: 'icons'; font-family: "icons";
font-size: $tiny-font-size; font-size: $tiny-font-size;
} }
} }
@@ -1306,8 +1306,8 @@
&::before { &::before {
color: #a5a1ff; color: #a5a1ff;
content: '\57'; content: "\57";
font-family: 'icons'; font-family: "icons";
font-size: $small-font-size; font-size: $small-font-size;
position: absolute; position: absolute;
right: -6px; right: -6px;
@@ -1450,8 +1450,8 @@
font-weight: bold; font-weight: bold;
&::after { &::after {
content: '\56'; content: "\56";
font-family: 'icons'; font-family: "icons";
font-size: $small-font-size; font-size: $small-font-size;
font-weight: normal; font-weight: normal;
line-height: $line-height; line-height: $line-height;
@@ -1526,7 +1526,7 @@
background-color: #fff; background-color: #fff;
border: 4px solid $budget; border: 4px solid $budget;
border-radius: 100%; border-radius: 100%;
content: ''; content: "";
height: 16px; height: 16px;
left: -22px; left: -22px;
position: absolute; position: absolute;
@@ -1668,7 +1668,7 @@
&::after { &::after {
color: #1b254c; color: #1b254c;
content: '\59'; content: "\59";
font-family: "icons" !important; font-family: "icons" !important;
left: 34px; left: 34px;
position: absolute; position: absolute;
@@ -1861,7 +1861,7 @@
&::after { &::after {
color: $color-info; color: $color-info;
content: '\6c'; content: "\6c";
} }
} }
@@ -1870,7 +1870,7 @@
&::after { &::after {
color: $color-alert; color: $color-alert;
content: '\74'; content: "\74";
} }
} }
@@ -1879,7 +1879,7 @@
&::after { &::after {
color: $color-info; color: $color-info;
content: '\6f'; content: "\6f";
} }
} }
@@ -1888,7 +1888,7 @@
&::after { &::after {
color: $color-warning; color: $color-warning;
content: '\6f'; content: "\6f";
} }
} }
@@ -1897,7 +1897,7 @@
&::after { &::after {
color: $color-success; color: $color-success;
content: '\59'; content: "\59";
} }
} }
} }
@@ -1963,7 +1963,7 @@
&::after { &::after {
background: #92ba48; background: #92ba48;
border-radius: rem-calc(20); border-radius: rem-calc(20);
content: '\6c'; content: "\6c";
color: #fff; color: #fff;
font-family: "icons" !important; font-family: "icons" !important;
font-size: rem-calc(12); font-size: rem-calc(12);