304 lines
8.3 KiB
SCSS
304 lines
8.3 KiB
SCSS
// base
|
|
$baseline: 20px;
|
|
|
|
// ====================
|
|
|
|
// LAYOUT: grid
|
|
$gw-column: 80px;
|
|
$gw-gutter: 20px;
|
|
$fg-column: $gw-column;
|
|
$fg-gutter: $gw-gutter;
|
|
$fg-max-columns: 12;
|
|
$fg-max-width: 1400px;
|
|
$fg-min-width: 810px;
|
|
|
|
// ====================
|
|
|
|
// FONTS
|
|
$sans-serif: 'Open Sans', $verdana, sans-serif;
|
|
$monospace: Monaco, 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
|
|
$body-font-family: $sans-serif;
|
|
$serif: $georgia;
|
|
|
|
// ====================
|
|
|
|
// MISC: base fonts/colors
|
|
$body-font-size: em(14);
|
|
$body-line-height: golden-ratio(.875em, 1);
|
|
$base-font-color: rgb(60,60,60);
|
|
$baseFontColor: rgb(60,60,60);
|
|
$base-font-color: rgb(60,60,60);
|
|
$lighter-base-font-color: rgb(100,100,100);
|
|
$very-light-text: #fff;
|
|
|
|
// ====================
|
|
|
|
// COLORS: misc.
|
|
$white: rgb(255,255,255);
|
|
$white-t0: rgba($white, 0.125);
|
|
$white-t1: rgba($white, 0.25);
|
|
$white-t2: rgba($white, 0.5);
|
|
$white-t3: rgba($white, 0.75);
|
|
|
|
$black: rgb(0,0,0);
|
|
$black-t0: rgba($black, 0.125);
|
|
$black-t1: rgba($black, 0.25);
|
|
$black-t2: rgba($black, 0.5);
|
|
$black-t3: rgba($black, 0.75);
|
|
|
|
$blue: rgb(29,157,217);
|
|
$pink: rgb(182,37,104);
|
|
$yellow: rgb(255, 252, 221);
|
|
$red: rgb(178, 6, 16);
|
|
$error-red: rgb(253, 87, 87);
|
|
$danger-red: rgb(212, 64, 64);
|
|
$light-gray: rgb(221, 221, 221);
|
|
$dark-gray: rgb(51, 51, 51);
|
|
$border-color: rgb(200, 200, 200);
|
|
$sidebar-color: rgb(246, 246, 246);
|
|
$outer-border-color: rgb(170, 170, 170);
|
|
|
|
$green: rgb(37, 184, 90);
|
|
|
|
// COLORS: old variables
|
|
$light-gray: #ddd;
|
|
$dark-gray: #333;
|
|
|
|
// used by descriptor css
|
|
$lightGrey: #edf1f5;
|
|
$darkGrey: #8891a1;
|
|
$blue-d1: shade($blue,20%);
|
|
$blue-d2: shade($blue,40%);
|
|
$blue-d4: shade($blue,80%);
|
|
$shadow: rgba($black, 0.2);
|
|
$shadow-l1: rgba($black, 0.1);
|
|
|
|
// edx.org marketing site variables
|
|
$m-gray: #8A8C8F;
|
|
$m-gray-l1: #97999B;
|
|
$m-gray-l2: #A4A6A8;
|
|
$m-gray-l3: #B1B2B4;
|
|
$m-gray-l4: #F5F5F5;
|
|
$m-gray-d1: #7D7F83;
|
|
$m-gray-d2: #707276;
|
|
$m-gray-d3: #646668;
|
|
$m-gray-d4: #050505;
|
|
$m-gray-t0: rgba($m-gray,0.125);
|
|
$m-gray-t1: rgba($m-gray,0.25);
|
|
$m-gray-t2: rgba($m-gray,0.50);
|
|
$m-gray-t3: rgba($m-gray,0.75);
|
|
|
|
$m-blue: #1AA1DE;
|
|
$m-blue-l1: #2BACE6;
|
|
$m-blue-l2: #42B5E9;
|
|
$m-blue-l3: #59BEEC;
|
|
$m-blue-l4: tint($m-blue,90%);
|
|
$m-blue-l5: tint($m-blue,95%);
|
|
$m-blue-d1: #1790C7;
|
|
$m-blue-d2: #1580B0;
|
|
$m-blue-d3: #126F9A;
|
|
$m-blue-d4: #0A4A67;
|
|
$m-blue-t0: rgba($m-blue,0.125);
|
|
$m-blue-t1: rgba($m-blue,0.25);
|
|
$m-blue-t2: rgba($m-blue,0.50);
|
|
$m-blue-t3: rgba($m-blue,0.75);
|
|
|
|
$m-pink: #B52A67;
|
|
$m-pink-l1: #CA2F73;
|
|
$m-pink-l2: #D33F80;
|
|
$m-pink-l3: #D7548E;
|
|
$m-pink-l4: tint($m-pink,75%);
|
|
$m-pink-l5: tint($m-pink,85%);
|
|
$m-pink-d1: #A0255B;
|
|
$m-pink-d2: #8C204F;
|
|
$m-pink-d3: #771C44;
|
|
|
|
$m-green: rgb(0, 136, 1);
|
|
$m-green-s1: rgb(96, 188, 97);
|
|
$m-green-l1: tint($m-green,20%);
|
|
$m-green-l2: tint($m-green,40%);
|
|
$m-green-l3: tint($m-green,60%);
|
|
$m-green-l4: tint($m-green,90%);
|
|
$m-green-l5: tint($m-green,95%);
|
|
$m-green-d1: shade($m-green,20%);
|
|
$m-green-d2: shade($m-green,40%);
|
|
$m-green-d3: shade($m-green,60%);
|
|
$m-green-d4: shade($m-green,90%);
|
|
$m-green-t0: rgba($m-green,0.125);
|
|
$m-green-t1: rgba($m-green,0.25);
|
|
$m-green-t2: rgba($m-green,0.50);
|
|
$m-green-t3: rgba($m-green,0.75);
|
|
|
|
// ====================
|
|
|
|
// shadows
|
|
$shadow: rgba(0,0,0,0.2);
|
|
$shadow-l1: rgba(0,0,0,0.1);
|
|
$shadow-l2: rgba(0,0,0,0.05);
|
|
$shadow-d1: rgba(0,0,0,0.4);
|
|
|
|
// ====================
|
|
|
|
$m-base-font-size: em(15);
|
|
|
|
$base-font-color: rgb(60,60,60);
|
|
$baseFontColor: rgb(60,60,60);
|
|
$lighter-base-font-color: rgb(100,100,100);
|
|
$text-color: $dark-gray;
|
|
|
|
$dark-trans-bg: rgba(0, 0, 0, .75);
|
|
|
|
$body-bg: rgb(250,250,250);
|
|
$container-bg: $white;
|
|
$header-image: linear-gradient(-90deg, rgba(255,255,255, 1), rgba(230,230,230, 0.9));
|
|
$header-bg: $white;
|
|
$courseware-header-image: linear-gradient(top, #fff, #eee);
|
|
$courseware-header-bg: transparent;
|
|
$footer-bg: $white;
|
|
$courseware-footer-border: none;
|
|
$courseware-footer-shadow: none;
|
|
$courseware-footer-margin: 0px;
|
|
|
|
// ====================
|
|
|
|
// STATE: verified
|
|
$verified-color-lvl1: $m-green;
|
|
$verified-color-lvl2: $m-green-l1;
|
|
$verified-color-lvl3: $m-green-l2;
|
|
$verified-color-lvl4: $m-green-l3;
|
|
$verified-color-lvl5: $m-green-l4;
|
|
|
|
// ====================
|
|
|
|
// ACTIONS: general
|
|
$button-bg-image: linear-gradient(#fff 0%, rgb(250,250,250) 50%, rgb(237,237,237) 50%, rgb(220,220,220) 100%);
|
|
$button-bg-color: transparent;
|
|
$button-bg-hover-color: #fff;
|
|
|
|
// ACTIONS: primary
|
|
$action-primary-bg: $m-blue-d3;
|
|
$action-primary-fg: $white;
|
|
$action-primary-shadow: $m-blue-d4;
|
|
|
|
// ACTIONS: primary - focused - hover/active pseudo states
|
|
$action-primary-focused-bg: $m-blue-d1;
|
|
$action-primary-focused-fg: $white;
|
|
|
|
// ACTIONS: primary - current or active navigation item
|
|
$action-primary-active-bg: $m-blue;
|
|
$action-primary-active-fg: $m-blue-d3;
|
|
$action-primary-active-shadow: $m-blue-d2;
|
|
$action-primary-active-focused-fg: $m-blue-d4;
|
|
$action-primary-active-focused-shadow: $m-blue-d3;
|
|
|
|
// ACTIONS: disabled
|
|
$action-primary-disabled-bg: $m-gray-d3;
|
|
$action-prmary-disabled-fg: $white;
|
|
|
|
// ACTIONS: secondary
|
|
$action-secondary-bg: $m-pink;
|
|
$action-secondary-fg: $white;
|
|
$action-secondary-shadow: $m-pink-d2;
|
|
|
|
// ACTIONS: secondary - focused - hover/active pseudo states
|
|
$action-secondary-focused-bg: $m-pink-l3;
|
|
$action-secondary-focused-fg: $white;
|
|
|
|
// ACTIONS: secondary - current or active navigation item
|
|
$action-secondary-active-bg: $m-pink-l2;
|
|
$action-secondary-active-fg: $m-pink-d1;
|
|
$action-secondary-active-shadow: $m-pink-d1;
|
|
$action-secondary-active-focused-fg: $m-pink-d3;
|
|
$action-secondary-active-focused-shadow: $m-pink-d2;
|
|
|
|
// ACTIONS: secondary - disabled
|
|
$action-secondary-disabled-bg: $m-gray-d3;
|
|
$action-secondary-disabled-fg: $white;
|
|
|
|
// HEADER: graphic-based page titles
|
|
$header-graphic-super-color: $m-blue-d1;
|
|
$header-graphic-sub-color: $m-gray-d2;
|
|
|
|
// State-based colors
|
|
$error-color: $error-red;
|
|
$warning-color: $m-pink;
|
|
$confirm-color: $m-green;
|
|
|
|
// ====================
|
|
|
|
// MISC: visual horizontal rules
|
|
$faded-hr-image-1: linear-gradient(180deg, rgba(200,200,200, 0) 0%, rgba(200,200,200, 1) 50%, rgba(200,200,200, 0));
|
|
$faded-hr-image-2: linear-gradient(180deg, rgba(200,200,200, 0) 0%, rgba(200,200,200, 1));
|
|
$faded-hr-image-3: linear-gradient(180deg, rgba(200,200,200, 1) 0%, rgba(200,200,200, 0));
|
|
$faded-hr-image-4: linear-gradient(180deg, rgba(240,240,240, 0) 0%, rgba(240,240,240, 1) 50%, rgba(240,240,240, 0));
|
|
$faded-hr-image-5: linear-gradient(180deg, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.8) 50%, rgba(255,255,255, 0));
|
|
$faded-hr-image-6: linear-gradient(90deg, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.6) 50%, rgba(255,255,255, 0));
|
|
|
|
// MISC: dashboard
|
|
$dashboard-profile-header-image: linear-gradient(-90deg, rgb(255,255,255), rgb(245,245,245));
|
|
$dashboard-profile-header-color: transparent;
|
|
$dashboard-profile-color: rgb(252,252,252);
|
|
$dot-color: $light-gray;
|
|
|
|
// MISC: course assets
|
|
$content-wrapper-bg: $white;
|
|
$course-bg-color: #d6d6d6;
|
|
$course-bg-image: url(../images/bg-texture.png);
|
|
$account-content-wrapper-bg: shade($body-bg, 2%);
|
|
$course-profile-bg: rgb(245,245,245);
|
|
$course-header-bg: rgba(255,255,255, 0.93);
|
|
|
|
// MISC: borders
|
|
$border-color-1: rgb(190,190,190);
|
|
$border-color-2: rgb(200,200,200);
|
|
$border-color-3: rgb(100,100,100);
|
|
$border-color-4: rgb(252,252,252);
|
|
$border-color-l1: $m-gray-l1;
|
|
$border-color-l2: $m-gray-l2;
|
|
$border-color-l3: $m-gray-l3;
|
|
$border-color-l4: $m-gray-l4;
|
|
|
|
// MISC: links and buttons
|
|
$link-color: $blue;
|
|
$link-color-d1: $m-blue-d2;
|
|
$link-hover: $pink;
|
|
$site-status-color: $pink;
|
|
$button-color: $blue;
|
|
$button-archive-color: #eee;
|
|
|
|
// MISC: shadow, form, modal
|
|
$shadow-color: $blue;
|
|
$form-bg-color: #fff;
|
|
$modal-bg-color: rgb(245,245,245);
|
|
|
|
// MISC: sidebar
|
|
$sidebar-chapter-bg-top: rgba(255, 255, 255, .6);
|
|
$sidebar-chapter-bg-bottom: rgba(255, 255, 255, 0);
|
|
$sidebar-chapter-bg: #eee;
|
|
$sidebar-active-image: linear-gradient(top, #e6e6e6, #d6d6d6);
|
|
|
|
// TOP HEADER IMAGE MARGIN
|
|
$header_image_margin: -69px;
|
|
|
|
//FOOTER MARGIN
|
|
$footer_margin: ($baseline/4) 0 ($baseline*1.5) 0;
|
|
|
|
// ====================
|
|
|
|
// IMAGES: backgrounds
|
|
$homepage-bg-image: '../images/homepage-bg.jpg';
|
|
|
|
$login-banner-image: url(../images/bg-banner-account.png);
|
|
$register-banner-image: url(../images/bg-banner-account.png);
|
|
|
|
$video-thumb-url: '../images/courses/video-thumb.jpg';
|
|
|
|
// ====================
|
|
|
|
// SPLINT: new standards
|
|
|
|
// SPLINT: fonts
|
|
$f-serif: 'Bree Serif', Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
$f-sans-serif: 'Open Sans','Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
$f-monospace: 'Bitstream Vera Sans Mono', Consolas, Courier, monospace;
|