Skip to content

Commit 0dae8f2

Browse files
committed
Created headers in SCSS to break things out more in the CSS file
1 parent f264650 commit 0dae8f2

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed

scss/_highlights.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
/***********************/
3+
/* SYNTAX HIGHLIGHTING */
4+
/***********************/
5+
16
.highlight {
27
background-color: $darkerGray;
38
padding: 5px 10px;

scss/_reset.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
//
3-
// RESET
4-
//
2+
/***************/
3+
/* MEYER RESET */
4+
/***************/
55

66
html, body, div, span, applet, object, iframe,
77
h1, h2, h3, h4, h5, h6, p, blockquote, pre,

scss/style.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
@import "_highlights";
99
// TODO - Tempted to move this to the end of the file, so that it shows up at the end of the .css. Or remove it entirely and find a better way to include highlighting.
1010

11-
//
12-
// BASE RULES
13-
//
11+
/*/
12+
/* BASE RULES
13+
/*/
1414

1515
html {
1616
font-size: 100%;
@@ -139,9 +139,9 @@ img {
139139
clear: both;
140140
}
141141

142-
//
143-
// LAYOUT / SECTIONS
144-
//
142+
/*/
143+
/* LAYOUT / SECTIONS
144+
/*/
145145

146146
//
147147
// .masthead

style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/***************/
2+
/* MEYER RESET */
3+
/***************/
14
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
25
margin: 0;
36
padding: 0;
@@ -27,6 +30,9 @@ table {
2730
border-collapse: collapse;
2831
border-spacing: 0; }
2932

33+
/***********************/
34+
/* SYNTAX HIGHLIGHTING */
35+
/***********************/
3036
.highlight {
3137
background-color: #222222;
3238
padding: 5px 10px;
@@ -314,6 +320,9 @@ code {
314320
color: #2aa198; }
315321

316322
/* Literal.Number.Integer.Long */
323+
/*/
324+
/* BASE RULES
325+
/*/
317326
html {
318327
font-size: 100%; }
319328

@@ -410,6 +419,9 @@ img {
410419
.clearfix:after {
411420
clear: both; }
412421

422+
/*/
423+
/* LAYOUT / SECTIONS
424+
/*/
413425
.wrapper-masthead {
414426
margin-bottom: 40px; }
415427

0 commit comments

Comments
 (0)