Updated Sass and CSS files to remove numbered TOC structure for added flexibility

This commit is contained in:
Hugo Baeta 2015-03-21 01:30:00 -07:00 committed by Konstantin Obenland
parent 68fb7912ef
commit 70b8baf2ed
5 changed files with 76 additions and 76 deletions

View File

@ -15,11 +15,11 @@ object {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
12.1 Captions ## Captions
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "captions"; @import "captions";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
12.2 Galleries ## Galleries
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "galleries"; @import "galleries";

View File

@ -1,9 +1,9 @@
/*-------------------------------------------------------------- /*--------------------------------------------------------------
5.1 Links ## Links
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "links"; @import "links";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
5.2 Menus ## Menus
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "menus"; @import "menus";

View File

@ -1,16 +1,16 @@
// @import "../layout/content-sidebar"; // @import "../layout/content-sidebar";
// @import "../layout/sidebar-content"; // @import "../layout/sidebar-content";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.1 Posts and pages ## Posts and pages
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "primary/posts-and-pages"; @import "primary/posts-and-pages";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.2 Asides ## Asides
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "primary/asides"; @import "primary/asides";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.3 Comments ## Comments
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "primary/comments"; @import "primary/comments";

View File

@ -22,85 +22,85 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
/*-------------------------------------------------------------- /*--------------------------------------------------------------
>>> TABLE OF CONTENTS: >>> TABLE OF CONTENTS:
---------------------------------------------------------------- ----------------------------------------------------------------
1.0 Normalize # Normalize
2.0 Typography # Typography
3.0 Elements # Elements
4.0 Forms # Forms
5.0 Navigation # Navigation
5.1 Links ## Links
5.2 Menus ## Menus
6.0 Accessibility # Accessibility
7.0 Alignments # Alignments
8.0 Clearings # Clearings
9.0 Widgets # Widgets
10.0 Content # Content
10.1 Posts and pages ## Posts and pages
10.2 Asides ## Asides
10.3 Comments ## Comments
11.0 Infinite scroll # Infinite scroll
12.0 Media # Media
12.1 Captions ## Captions
12.2 Galleries ## Galleries
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "variables-site/variables-site"; @import "variables-site/variables-site";
@import "mixins/mixins-master"; @import "mixins/mixins-master";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
1.0 Normalize # Normalize
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "normalize"; @import "normalize";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
2.0 Typography # Typography
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "typography/typography"; @import "typography/typography";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
3.0 Elements # Elements
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "elements/elements"; @import "elements/elements";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
4.0 Forms # Forms
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "forms/forms"; @import "forms/forms";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
5.0 Navigation # Navigation
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "navigation/navigation"; @import "navigation/navigation";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
6.0 Accessibility # Accessibility
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "modules/accessibility"; @import "modules/accessibility";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
7.0 Alignments # Alignments
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "modules/alignments"; @import "modules/alignments";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
8.0 Clearings # Clearings
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "modules/clearings"; @import "modules/clearings";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
9.0 Widgets # Widgets
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "site/secondary/widgets"; @import "site/secondary/widgets";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.0 Content # Content
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "site/site"; @import "site/site";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
11.0 Infinite scroll # Infinite scroll
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "modules/infinite-scroll"; @import "modules/infinite-scroll";
/*-------------------------------------------------------------- /*--------------------------------------------------------------
12.0 Media # Media
--------------------------------------------------------------*/ --------------------------------------------------------------*/
@import "media/media"; @import "media/media";

View File

@ -22,29 +22,29 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
/*-------------------------------------------------------------- /*--------------------------------------------------------------
>>> TABLE OF CONTENTS: >>> TABLE OF CONTENTS:
---------------------------------------------------------------- ----------------------------------------------------------------
1.0 Normalize # Normalize
2.0 Typography # Typography
3.0 Elements # Elements
4.0 Forms # Forms
5.0 Navigation # Navigation
5.1 Links ## Links
5.2 Menus ## Menus
6.0 Accessibility # Accessibility
7.0 Alignments # Alignments
8.0 Clearings # Clearings
9.0 Widgets # Widgets
10.0 Content # Content
10.1 Posts and pages ## Posts and pages
10.2 Asides ## Asides
10.3 Comments ## Comments
11.0 Infinite scroll # Infinite scroll
12.0 Media # Media
12.1 Captions ## Captions
12.2 Galleries ## Galleries
--------------------------------------------------------------*/ --------------------------------------------------------------*/
/*-------------------------------------------------------------- /*--------------------------------------------------------------
1.0 Normalize # Normalize
--------------------------------------------------------------*/ --------------------------------------------------------------*/
html { html {
font-family: sans-serif; font-family: sans-serif;
@ -263,7 +263,7 @@ th {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
2.0 Typography # Typography
--------------------------------------------------------------*/ --------------------------------------------------------------*/
body, body,
button, button,
@ -342,7 +342,7 @@ big {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
3.0 Elements # Elements
--------------------------------------------------------------*/ --------------------------------------------------------------*/
html { html {
box-sizing: border-box; box-sizing: border-box;
@ -415,7 +415,7 @@ table {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
4.0 Forms # Forms
--------------------------------------------------------------*/ --------------------------------------------------------------*/
button, button,
input[type="button"], input[type="button"],
@ -488,10 +488,10 @@ textarea {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
5.0 Navigation # Navigation
--------------------------------------------------------------*/ --------------------------------------------------------------*/
/*-------------------------------------------------------------- /*--------------------------------------------------------------
5.1 Links ## Links
--------------------------------------------------------------*/ --------------------------------------------------------------*/
a { a {
color: royalblue; color: royalblue;
@ -517,7 +517,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
5.2 Menus ## Menus
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.main-navigation { .main-navigation {
clear: both; clear: both;
@ -625,7 +625,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
6.0 Accessibility # Accessibility
--------------------------------------------------------------*/ --------------------------------------------------------------*/
/* Text meant only for screen readers. */ /* Text meant only for screen readers. */
.screen-reader-text { .screen-reader-text {
@ -659,7 +659,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
7.0 Alignments # Alignments
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.alignleft { .alignleft {
display: inline; display: inline;
@ -681,7 +681,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
8.0 Clearings # Clearings
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.clear:before, .clear:before,
.clear:after, .clear:after,
@ -709,7 +709,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
9.0 Widgets # Widgets
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.widget { .widget {
margin: 0 0 1.5em; margin: 0 0 1.5em;
@ -726,10 +726,10 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.0 Content # Content
--------------------------------------------------------------*/ --------------------------------------------------------------*/
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.1 Posts and pages ## Posts and pages
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.sticky { .sticky {
display: block; display: block;
@ -761,7 +761,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.2 Asides ## Asides
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.blog .format-aside .entry-title, .blog .format-aside .entry-title,
.archive .format-aside .entry-title { .archive .format-aside .entry-title {
@ -769,7 +769,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
10.3 Comments ## Comments
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.comment-content a { .comment-content a {
word-wrap: break-word; word-wrap: break-word;
@ -780,7 +780,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
11.0 Infinite scroll # Infinite scroll
--------------------------------------------------------------*/ --------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */ /* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */ .infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
@ -794,7 +794,7 @@ a:active {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
12.0 Media # Media
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.page-content .wp-smiley, .page-content .wp-smiley,
.entry-content .wp-smiley, .entry-content .wp-smiley,
@ -813,7 +813,7 @@ object {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
12.1 Captions ## Captions
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.wp-caption { .wp-caption {
margin-bottom: 1.5em; margin-bottom: 1.5em;
@ -834,7 +834,7 @@ object {
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
12.2 Galleries ## Galleries
--------------------------------------------------------------*/ --------------------------------------------------------------*/
.gallery { .gallery {
margin-bottom: 1.5em; margin-bottom: 1.5em;