Commit 6d0b083b authored by Jacob Thornton's avatar Jacob Thornton
Browse files

update whitspace and comment styles

parent 5eb962fa
Showing with 109 additions and 82 deletions
+109 -82
...@@ -26,7 +26,6 @@ Reporting bugs ...@@ -26,7 +26,6 @@ Reporting bugs
Please create an issue here on github! :P Please create an issue here on github! :P
AUTHORS AUTHORS
------- -------
......
...@@ -6,12 +6,11 @@ ...@@ -6,12 +6,11 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Designed and built with all the love in the world @twitter by @mdo and @fat. * Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Fri Jul 29 13:03:43 PDT 2011 * Date: Tue Aug 16 22:54:18 PDT 2011
*/ */
/* /* Reset.less
* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
*/ * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
html, body { html, body {
margin: 0; margin: 0;
padding: 0; padding: 0;
...@@ -125,9 +124,7 @@ aside { ...@@ -125,9 +124,7 @@ aside {
/* /*
* Scaffolding * Scaffolding
* Basic and global styles for generating a grid system, structural layout, and page templates * Basic and global styles for generating a grid system, structural layout, and page templates
*/ * ------------------------------------------------------------------------------------------- */
/* Baseline Grid System
-------------------------------------------------- */
.row { .row {
zoom: 1; zoom: 1;
} }
...@@ -338,8 +335,6 @@ aside { ...@@ -338,8 +335,6 @@ aside {
.row .offset12:first-child { .row .offset12:first-child {
margin-left: 720px !important; margin-left: 720px !important;
} }
/* Structural Layout
-------------------------------------------------- */
html, body { html, body {
background-color: #fff; background-color: #fff;
} }
...@@ -376,8 +371,6 @@ div.container-fluid div.content { ...@@ -376,8 +371,6 @@ div.container-fluid div.content {
max-width: 1180px; max-width: 1180px;
margin-left: 240px; margin-left: 240px;
} }
/* Base Styles
-------------------------------------------------- */
a { a {
color: #0069d6; color: #0069d6;
text-decoration: none; text-decoration: none;
...@@ -639,12 +632,9 @@ pre { ...@@ -639,12 +632,9 @@ pre {
border-radius: 3px; border-radius: 3px;
white-space: pre-wrap; white-space: pre-wrap;
} }
/* /* Forms.less
* Forms.less
* Base styles for various input types, form layouts, and states * Base styles for various input types, form layouts, and states
*/ * ------------------------------------------------------------- */
/* Global form styles
-------------------------------------------------- */
form { form {
margin-bottom: 18px; margin-bottom: 18px;
} }
...@@ -981,9 +971,7 @@ form.form-stacked div.actions { ...@@ -981,9 +971,7 @@ form.form-stacked div.actions {
/* /*
* Tables.less * Tables.less
* Tables for, you guessed it, tabular data * Tables for, you guessed it, tabular data
*/ * ---------------------------------------- */
/* Baseline styles
-------------------------------------------------- */
table { table {
width: 100%; width: 100%;
margin-bottom: 18px; margin-bottom: 18px;
...@@ -1003,8 +991,6 @@ table th { ...@@ -1003,8 +991,6 @@ table th {
font-weight: bold; font-weight: bold;
border-bottom-width: 2px; border-bottom-width: 2px;
} }
/* Zebra-striping
-------------------------------------------------- */
table.zebra-striped tbody tr:nth-child(odd) td { table.zebra-striped tbody tr:nth-child(odd) td {
background-color: #f9f9f9; background-color: #f9f9f9;
} }
......
...@@ -20,4 +20,5 @@ ...@@ -20,4 +20,5 @@
@import "type.less"; @import "type.less";
@import "forms.less"; @import "forms.less";
@import "tables.less"; @import "tables.less";
@import "patterns.less"; @import "patterns.less";
\ No newline at end of file
/* /* Forms.less
* Forms.less
* Base styles for various input types, form layouts, and states * Base styles for various input types, form layouts, and states
*/ * ------------------------------------------------------------- */
/* Global form styles // FORM STYLES
-------------------------------------------------- */ // -----------
form { form {
margin-bottom: @baseline; margin-bottom: @baseline;
// Groups of fields with labels on top (legends) // Groups of fields with labels on top (legends)
fieldset { fieldset {
margin-bottom: @baseline; margin-bottom: @baseline;
...@@ -21,14 +21,17 @@ form { ...@@ -21,14 +21,17 @@ form {
color: @grayDark; color: @grayDark;
} }
} }
// Parent element that clears floats and wraps labels and fields together // Parent element that clears floats and wraps labels and fields together
div.clearfix { div.clearfix {
margin-bottom: @baseline; margin-bottom: @baseline;
} }
// Set font for forms // Set font for forms
label, input, select, textarea { label, input, select, textarea {
#font > .sans-serif(normal,13px,normal); #font > .sans-serif(normal,13px,normal);
} }
// Float labels left // Float labels left
label { label {
padding-top: 6px; padding-top: 6px;
...@@ -39,15 +42,18 @@ form { ...@@ -39,15 +42,18 @@ form {
text-align: right; text-align: right;
color: @grayDark; color: @grayDark;
} }
// Shift over the inside div to align all label's relevant content // Shift over the inside div to align all label's relevant content
div.input { div.input {
margin-left: 150px; margin-left: 150px;
} }
// Checkboxs and radio buttons // Checkboxs and radio buttons
input[type=checkbox], input[type=checkbox],
input[type=radio] { input[type=radio] {
cursor: pointer; cursor: pointer;
} }
// Inputs, Textareas, Selects // Inputs, Textareas, Selects
input[type=text], input[type=text],
input[type=password], input[type=password],
...@@ -79,6 +85,7 @@ form { ...@@ -79,6 +85,7 @@ form {
border-color: #ccc; border-color: #ccc;
.box-shadow(inset 0 1px 2px rgba(0,0,0,.075)); .box-shadow(inset 0 1px 2px rgba(0,0,0,.075));
} }
// Placeholder text gets special styles; can't be bundled together though for some reason // Placeholder text gets special styles; can't be bundled together though for some reason
:-moz-placeholder { :-moz-placeholder {
color: @grayLight; color: @grayLight;
...@@ -86,6 +93,7 @@ form { ...@@ -86,6 +93,7 @@ form {
::-webkit-input-placeholder { ::-webkit-input-placeholder {
color: @grayLight; color: @grayLight;
} }
// Focus states // Focus states
input[type=text], input[type=text],
input[type=password], input[type=password],
...@@ -102,6 +110,7 @@ form { ...@@ -102,6 +110,7 @@ form {
@shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6); @shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6);
.box-shadow(@shadow); .box-shadow(@shadow);
} }
// Error styles // Error styles
div.error { div.error {
background: lighten(@red, 57%); background: lighten(@red, 57%);
...@@ -133,6 +142,7 @@ form { ...@@ -133,6 +142,7 @@ form {
} }
} }
} }
// Form element sizes // Form element sizes
.input-mini, input.mini, textarea.mini, select.mini { .input-mini, input.mini, textarea.mini, select.mini {
width: 60px; width: 60px;
...@@ -155,6 +165,7 @@ form { ...@@ -155,6 +165,7 @@ form {
textarea.xxlarge { textarea.xxlarge {
overflow-y: scroll; overflow-y: scroll;
} }
// Turn off focus for disabled (read-only) form elements // Turn off focus for disabled (read-only) form elements
input[readonly]:focus, input[readonly]:focus,
textarea[readonly]:focus, textarea[readonly]:focus,
...@@ -194,6 +205,7 @@ div.actions { ...@@ -194,6 +205,7 @@ div.actions {
.help-inline { .help-inline {
padding-left: 5px; padding-left: 5px;
} }
// Big blocks of help text // Big blocks of help text
.help-block { .help-block {
display: block; display: block;
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
* Repeatable UI elements outside the base styles provided from the scaffolding * Repeatable UI elements outside the base styles provided from the scaffolding
* ---------------------------------------------------------------------------- */ * ---------------------------------------------------------------------------- */
// Topbar
// TOPBAR
// ------ // ------
// Topbar for Branding and Nav // Topbar for Branding and Nav
...@@ -17,11 +18,13 @@ div.topbar { ...@@ -17,11 +18,13 @@ div.topbar {
overflow: visible; overflow: visible;
@shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1); @shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
.box-shadow(@shadow); .box-shadow(@shadow);
// Links get text shadow // Links get text shadow
a { a {
color: @grayLight; color: @grayLight;
text-shadow: 0 -1px 0 rgba(0,0,0,.25); text-shadow: 0 -1px 0 rgba(0,0,0,.25);
} }
// Hover and active states for links // Hover and active states for links
ul li a:hover, ul li a:hover,
ul li.active a, ul li.active a,
...@@ -31,6 +34,7 @@ div.topbar { ...@@ -31,6 +34,7 @@ div.topbar {
color: @white; color: @white;
text-decoration: none; text-decoration: none;
} }
// Logo // Logo
a.logo { a.logo {
float: left; float: left;
...@@ -46,6 +50,7 @@ div.topbar { ...@@ -46,6 +50,7 @@ div.topbar {
margin-right: 6px; margin-right: 6px;
} }
} }
// Search Form // Search Form
form { form {
float: left; float: left;
...@@ -65,6 +70,7 @@ div.topbar { ...@@ -65,6 +70,7 @@ div.topbar {
@shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.25); @shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.25);
.box-shadow(@shadow); .box-shadow(@shadow);
.transition(none); .transition(none);
// Placeholder text gets special styles; can't be bundled together though for some reason // Placeholder text gets special styles; can't be bundled together though for some reason
&:-moz-placeholder { &:-moz-placeholder {
color: @grayLighter; color: @grayLighter;
...@@ -89,6 +95,7 @@ div.topbar { ...@@ -89,6 +95,7 @@ div.topbar {
} }
} }
} }
// Navigation // Navigation
ul { ul {
display: block; display: block;
...@@ -120,6 +127,7 @@ div.topbar { ...@@ -120,6 +127,7 @@ div.topbar {
background-color: rgba(0,0,0,.5); background-color: rgba(0,0,0,.5);
} }
} }
// Dropdowns // Dropdowns
&.primary-nav li ul { &.primary-nav li ul {
left: 0; left: 0;
...@@ -207,6 +215,7 @@ div.topbar { ...@@ -207,6 +215,7 @@ div.topbar {
color: #fff; color: #fff;
} }
} }
// Dividers (basically an hr) // Dividers (basically an hr)
&.divider { &.divider {
height: 1px; height: 1px;
...@@ -215,6 +224,7 @@ div.topbar { ...@@ -215,6 +224,7 @@ div.topbar {
border-bottom: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
margin: 5px 0; margin: 5px 0;
} }
// Section separaters // Section separaters
span { span {
clear: both; clear: both;
...@@ -230,7 +240,8 @@ div.topbar { ...@@ -230,7 +240,8 @@ div.topbar {
} }
} }
// Page Headers
// PAGE HEADERS
// ------------ // ------------
div.page-header { div.page-header {
...@@ -243,7 +254,7 @@ div.page-header { ...@@ -243,7 +254,7 @@ div.page-header {
} }
// Error Styles // ERROR STYLES
// ------------ // ------------
// One-liner alert bars // One-liner alert bars
...@@ -336,7 +347,7 @@ div.block-message { ...@@ -336,7 +347,7 @@ div.block-message {
} }
// Navigation // NAVIGATION
// ---------- // ----------
// Common tab and pill styles // Common tab and pill styles
...@@ -353,6 +364,7 @@ ul.pills { ...@@ -353,6 +364,7 @@ ul.pills {
} }
} }
} }
// Basic Tabs // Basic Tabs
ul.tabs { ul.tabs {
width: 100%; width: 100%;
...@@ -378,6 +390,7 @@ ul.tabs { ...@@ -378,6 +390,7 @@ ul.tabs {
} }
} }
} }
// Basic pill nav // Basic pill nav
ul.pills { ul.pills {
li { li {
...@@ -403,8 +416,8 @@ ul.pills { ...@@ -403,8 +416,8 @@ ul.pills {
} }
// Pagination // PAGINATION
// -------------------------------------------------- // ----------
div.pagination { div.pagination {
height: @baseline * 2; height: @baseline * 2;
...@@ -442,7 +455,7 @@ div.pagination { ...@@ -442,7 +455,7 @@ div.pagination {
} }
// Wells // WELLS
// ----- // -----
div.well { div.well {
...@@ -456,7 +469,7 @@ div.well { ...@@ -456,7 +469,7 @@ div.well {
} }
// Modals // MODALS
// ------ // ------
div.modal-backdrop { div.modal-backdrop {
...@@ -510,7 +523,7 @@ div.modal { ...@@ -510,7 +523,7 @@ div.modal {
} }
// Popover Arrows // POPOVER ARROWS
// -------------- // --------------
#popoverArrow { #popoverArrow {
...@@ -548,7 +561,7 @@ div.modal { ...@@ -548,7 +561,7 @@ div.modal {
} }
} }
// Twipsy // TWIPSY
// ------ // ------
div.twipsy { div.twipsy {
...@@ -580,7 +593,7 @@ div.twipsy { ...@@ -580,7 +593,7 @@ div.twipsy {
} }
// Popovers // POPOVERS
// -------- // --------
.popover { .popover {
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
* Variables and mixins to pre-ignite any new web development project * Variables and mixins to pre-ignite any new web development project
* ------------------------------------------------------------------ */ * ------------------------------------------------------------------ */
// Variables
// VARIABLES
// --------- // ---------
// Links // Links
...@@ -37,10 +38,7 @@ ...@@ -37,10 +38,7 @@
@gridGutterWidth: 20px; @gridGutterWidth: 20px;
@siteWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1)); @siteWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
// Color Scheme // Color Scheme
// ------------
@baseColor: @blue; // Set a base color @baseColor: @blue; // Set a base color
@complement: spin(@baseColor, 180); // Determine a complementary color @complement: spin(@baseColor, 180); // Determine a complementary color
@split1: spin(@baseColor, 158); // Split complements @split1: spin(@baseColor, 158); // Split complements
...@@ -53,7 +51,7 @@ ...@@ -53,7 +51,7 @@
@analog2: spin(@baseColor, -22); @analog2: spin(@baseColor, -22);
// Mixins // MIXINS
// ------ // ------
// Clearfix for clearing floats like a boss // Clearfix for clearing floats like a boss
......
/* /* Reset.less
* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
*/ * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
// ERIC MEYER RESET
// ----------------
// Eric Meyer reset
html, body { margin: 0; padding: 0; } html, body { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; } h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; }
table { border-collapse: collapse; border-spacing: 0; } table { border-collapse: collapse; border-spacing: 0; }
ol, ul { list-style: none; } ol, ul { list-style: none; }
q:before, q:after, blockquote:before, blockquote:after { content: ""; } q:before, q:after, blockquote:before, blockquote:after { content: ""; }
// HTML5 // HTML5
header, // -----
section,
footer, header, section, footer, article, aside {
article,
aside {
display: block; display: block;
} }
\ No newline at end of file
/* /*
* Scaffolding * Scaffolding
* Basic and global styles for generating a grid system, structural layout, and page templates * Basic and global styles for generating a grid system, structural layout, and page templates
*/ * ------------------------------------------------------------------------------------------- */
/* Baseline Grid System
-------------------------------------------------- */ // GRID SYSTEM
// -----------
.row { .row {
.clearfix(); .clearfix();
// Default columns // Default columns
.span1 { .columns(1); } .span1 { .columns(1); }
.span2 { .columns(2); } .span2 { .columns(2); }
...@@ -26,7 +27,7 @@ ...@@ -26,7 +27,7 @@
.span14 { .columns(14); } .span14 { .columns(14); }
.span15 { .columns(15); } .span15 { .columns(15); }
.span16 { .columns(16); } .span16 { .columns(16); }
// Offset column options // Offset column options
.offset1 { .offset(1); } .offset1 { .offset(1); }
.offset2 { .offset(2); } .offset2 { .offset(2); }
...@@ -43,8 +44,8 @@ ...@@ -43,8 +44,8 @@
} }
/* Structural Layout // STRUCTURAL LAYOUT
-------------------------------------------------- */ // -----------------
html, body { html, body {
background-color: #fff; background-color: #fff;
...@@ -78,8 +79,8 @@ div.container-fluid { ...@@ -78,8 +79,8 @@ div.container-fluid {
} }
/* Base Styles // BASE STYLES
-------------------------------------------------- */ // -----------
// Links // Links
a { a {
...@@ -125,6 +126,7 @@ a { ...@@ -125,6 +126,7 @@ a {
.box-shadow(@shadow); .box-shadow(@shadow);
} }
} }
// Help Firefox not be a jerk about adding extra padding to buttons // Help Firefox not be a jerk about adding extra padding to buttons
button.btn, button.btn,
input[type=submit].btn { input[type=submit].btn {
......
/* /*
* Tables.less * Tables.less
* Tables for, you guessed it, tabular data * Tables for, you guessed it, tabular data
*/ * ---------------------------------------- */
/* Baseline styles // BASELINE STYLES
-------------------------------------------------- */ // ---------------
table { table {
width: 100%; width: 100%;
...@@ -28,8 +28,8 @@ table { ...@@ -28,8 +28,8 @@ table {
} }
/* Zebra-striping // ZEBRA-STRIPING
-------------------------------------------------- */ // --------------
// Default zebra-stripe styles (alternating gray and transparent backgrounds) // Default zebra-stripe styles (alternating gray and transparent backgrounds)
table.zebra-striped { table.zebra-striped {
...@@ -41,8 +41,9 @@ table.zebra-striped { ...@@ -41,8 +41,9 @@ table.zebra-striped {
background-color: #f5f5f5; background-color: #f5f5f5;
} }
} }
// Tablesorting styles w/ jQuery plugin // Tablesorting styles w/ jQuery plugin
th.header { // For tablesorter tables, make THs have a pointer on hover th.header {
cursor: pointer; cursor: pointer;
&:after { &:after {
width: 0px; width: 0px;
...@@ -61,13 +62,17 @@ table.zebra-striped { ...@@ -61,13 +62,17 @@ table.zebra-striped {
.opacity(30); .opacity(30);
} }
} }
// Style the sorted column headers (THs)
th.headerSortUp, th.headerSortUp,
th.headerSortDown { // Style the sorted column headers (THs) th.headerSortDown {
background-color: rgba(141,192,219,.25); background-color: rgba(141,192,219,.25);
text-shadow: 0 1px 1px rgba(255,255,255,.75); text-shadow: 0 1px 1px rgba(255,255,255,.75);
.border-radius(3px 3px 0 0); .border-radius(3px 3px 0 0);
} }
th.header:hover { // Style the ascending (reverse alphabetical) column header
// Style the ascending (reverse alphabetical) column header
th.header:hover {
&:after { &:after {
visibility:visible; visibility:visible;
} }
...@@ -75,14 +80,18 @@ table.zebra-striped { ...@@ -75,14 +80,18 @@ table.zebra-striped {
th.actions:hover { th.actions:hover {
background-image: none; background-image: none;
} }
// Style the descending (alphabetical) column header
th.headerSortDown, th.headerSortDown,
th.headerSortDown:hover { // Style the descending (alphabetical) column header th.headerSortDown:hover {
&:after { &:after {
visibility:visible; visibility:visible;
.opacity(60); .opacity(60);
} }
} }
th.headerSortUp { // Style the ascending (reverse alphabetical) column header
// Style the ascending (reverse alphabetical) column header
th.headerSortUp {
&:after { &:after {
border-bottom: none; border-bottom: none;
border-left: 4px solid transparent; border-left: 4px solid transparent;
...@@ -93,6 +102,7 @@ table.zebra-striped { ...@@ -93,6 +102,7 @@ table.zebra-striped {
.opacity(60); .opacity(60);
} }
} }
// Blue Table Headings // Blue Table Headings
th.blue { th.blue {
color: @blue; color: @blue;
...@@ -101,6 +111,7 @@ table.zebra-striped { ...@@ -101,6 +111,7 @@ table.zebra-striped {
th.headerSortUp.blue, th.headerSortDown.blue { th.headerSortUp.blue, th.headerSortDown.blue {
background-color: lighten(@blue, 40%); background-color: lighten(@blue, 40%);
} }
// Green Table Headings // Green Table Headings
th.green { th.green {
color: @green; color: @green;
...@@ -109,36 +120,40 @@ table.zebra-striped { ...@@ -109,36 +120,40 @@ table.zebra-striped {
th.headerSortUp.green, th.headerSortDown.green { // backround color is 20% of border color th.headerSortUp.green, th.headerSortDown.green { // backround color is 20% of border color
background-color: lighten(@green, 40%); background-color: lighten(@green, 40%);
} }
// Red Table Headings // Red Table Headings
th.red { th.red {
color: @red; color: @red;
border-bottom-color: @red; border-bottom-color: @red;
} }
th.headerSortUp.red, th.headerSortDown.red { // backround color is 20% of border color th.headerSortUp.red, th.headerSortDown.red {
background-color: lighten(@red, 50%); background-color: lighten(@red, 50%);
} }
// Yellow Table Headings // Yellow Table Headings
th.yellow { th.yellow {
color: @yellow; color: @yellow;
border-bottom-color: @yellow; border-bottom-color: @yellow;
} }
th.headerSortUp.yellow, th.headerSortDown.yellow { // backround color is 20% of border color th.headerSortUp.yellow, th.headerSortDown.yellow {
background-color: lighten(@yellow, 40%); background-color: lighten(@yellow, 40%);
} }
// Orange Table Headings // Orange Table Headings
th.orange { th.orange {
color: @orange; color: @orange;
border-bottom-color: @orange; border-bottom-color: @orange;
} }
th.headerSortUp.orange, th.headerSortDown.orange { // backround color is 20% of border color th.headerSortUp.orange, th.headerSortDown.orange {
background-color: lighten(@orange, 40%); background-color: lighten(@orange, 40%);
} }
// Purple Table Headings // Purple Table Headings
th.purple { th.purple {
color: @purple; color: @purple;
border-bottom-color: @purple; border-bottom-color: @purple;
} }
th.headerSortUp.purple, th.headerSortDown.purple { // backround color is 20% of border color th.headerSortUp.purple, th.headerSortDown.purple {
background-color: lighten(@purple, 40%); background-color: lighten(@purple, 40%);
} }
} }
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* ---------------------------------------------------------------------------------------- */ * ---------------------------------------------------------------------------------------- */
// Body text // BODY TEXT
// --------- // ---------
p { p {
...@@ -15,7 +15,8 @@ p { ...@@ -15,7 +15,8 @@ p {
} }
} }
// Headings
// HEADINGS
// -------- // --------
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
...@@ -65,8 +66,7 @@ h6 { ...@@ -65,8 +66,7 @@ h6 {
} }
// COLORS
// Colors
// ------ // ------
// Unordered and Ordered lists // Unordered and Ordered lists
...@@ -108,7 +108,7 @@ dl { ...@@ -108,7 +108,7 @@ dl {
} }
} }
// Misc // MISC
// ---- // ----
// Horizontal rules // Horizontal rules
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment