Last active
September 8, 2015 15:09
-
-
Save tonyfinlay/d1e8f457486d9fbefe2c to your computer and use it in GitHub Desktop.
Revisions
-
Tony Finlay revised this gist
Sep 8, 2015 . 3 changed files with 4 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -26,7 +26,7 @@ <div class="col">Col 8</div> </div> </div> <div class="primary-sidebar">Sidebar</div> <div class="secondary-sidebar">Sidebar</div> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,6 @@ // Compass (v1.0.3) // Breakpoint (v2.5.0) // Singularity Extras (v1.0.0) // ---- @import "breakpoint"; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -26,7 +26,7 @@ <div class="col">Col 8</div> </div> </div> <div class="primary-sidebar">Sidebar</div> <div class="secondary-sidebar">Sidebar</div> </body> </html> -
Tony Finlay revised this gist
Aug 15, 2015 . No changes.There are no files selected for viewing
-
Tony Finlay revised this gist
Aug 15, 2015 . 2 changed files with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -56,7 +56,7 @@ div { } @include breakpoint($large) { background-color: aqua; &:nth-child(4n+1){@include grid-span(6, 1); clear: left; margin-left: 0;} &:nth-child(4n+2){@include grid-span(6, 7);} &:nth-child(4n+3){@include grid-span(6, 13);} &:nth-child(4n+4){@include grid-span(6, 19);} This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -96,6 +96,7 @@ div { clear: none; padding-right: 5px; clear: left; margin-left: 0; } .col:nth-child(4n+2) { width: 25%; -
Tony Finlay revised this gist
Aug 15, 2015 . 2 changed files with 45 additions and 137 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,8 +10,8 @@ @import "singularitygs"; @import "singularity-extras"; $gutter-size: 5px; $small: min-width 760px; $medium: min-width 1000px; $large: min-width 1200px; @@ -37,45 +37,29 @@ div { @include add-gutter($gutter-size); } .col{ @include grid-span(24, 1); background:black; background-clip:content-box; padding-bottom: $gutter-size; height: 25vh; color: white; @include breakpoint($small) { background-color: purple; &:nth-child(odd){@include grid-span(12, 1); clear: left;} &:nth-child(even){@include grid-span(12, 13);} } @include breakpoint($medium) { background-color: orange; &:nth-child(3n+1){@include grid-span(8, 1); clear: left;} &:nth-child(3n+2){@include grid-span(8, 9);} &:nth-child(3n+3){@include grid-span(8, 17);} } @include breakpoint($large) { background-color: aqua; &:nth-child(4n+1){@include grid-span(6, 1); clear: left;} &:nth-child(4n+2){@include grid-span(6, 7);} &:nth-child(4n+3){@include grid-span(6, 13);} &:nth-child(4n+4){@include grid-span(6, 19);} } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -23,75 +23,31 @@ div { } .col { width: 100%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; background: black; background-clip: content-box; padding-bottom: 5px; height: 25vh; color: white; } @media (min-width: 760px) { .col { background-color: purple; } .col:nth-child(odd) { width: 50%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } .col:nth-child(even) { width: 50%; float: right; margin-left: 0; @@ -100,95 +56,63 @@ div { padding-right: 0; } } @media (min-width: 1000px) { .col { background-color: orange; } .col:nth-child(3n+1) { width: 33.33333%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } .col:nth-child(3n+2) { width: 33.33333%; float: left; margin-right: -100%; margin-left: 33.33333%; clear: none; padding-right: 5px; } .col:nth-child(3n+3) { width: 33.33333%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } } @media (min-width: 1200px) { .col { background-color: aqua; } .col:nth-child(4n+1) { width: 25%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } .col:nth-child(4n+2) { width: 25%; float: left; margin-right: -100%; margin-left: 25%; clear: none; padding-right: 5px; } .col:nth-child(4n+3) { width: 25%; float: left; margin-right: -100%; margin-left: 50%; clear: none; padding-right: 5px; } .col:nth-child(4n+4) { width: 25%; float: right; -
Tony Finlay revised this gist
Aug 15, 2015 . 2 changed files with 12 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,8 +10,8 @@ @import "singularitygs"; @import "singularity-extras"; $gutter-size: 5px; $small: 760px 999px; $medium: 1000px 1199px; $large: min-width 1200px; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,12 +29,12 @@ div { height: 25vh; color: white; } @media (min-width: 760px) and (max-width: 999px) { .col { background-color: purple; } } @media (min-width: 1000px) and (max-width: 1199px) { .col { background-color: orange; } @@ -52,7 +52,7 @@ div { clear: none; padding-right: 0; } @media (min-width: 760px) and (max-width: 999px) { .col:nth-child(4n+1) { width: 50%; float: left; @@ -62,7 +62,7 @@ div { clear: left; } } @media (min-width: 1000px) and (max-width: 1199px) { .col:nth-child(4n+1) { width: 33.33333%; float: left; @@ -90,7 +90,7 @@ div { clear: none; padding-right: 0; } @media (min-width: 760px) and (max-width: 999px) { .col:nth-child(4n+2) { width: 50%; float: right; @@ -100,7 +100,7 @@ div { padding-right: 0; } } @media (min-width: 1000px) and (max-width: 1199px) { .col:nth-child(4n+2) { width: 33.33333%; float: left; @@ -129,7 +129,7 @@ div { clear: none; padding-right: 0; } @media (min-width: 760px) and (max-width: 999px) { .col:nth-child(4n+3) { width: 50%; float: left; @@ -139,7 +139,7 @@ div { clear: left; } } @media (min-width: 1000px) and (max-width: 1199px) { .col:nth-child(4n+3) { width: 33.33333%; float: right; @@ -168,7 +168,7 @@ div { clear: none; padding-right: 0; } @media (min-width: 760px) and (max-width: 999px) { .col:nth-child(4n+4) { width: 50%; float: right; @@ -178,7 +178,7 @@ div { padding-right: 0; } } @media (min-width: 1000px) and (max-width: 1199px) { .col:nth-child(4n+4) { width: 33.33333%; float: left; -
Tony Finlay revised this gist
Aug 14, 2015 . 4 changed files with 179 additions and 37 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,10 +16,10 @@ <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> <div class="col">Col 1</div> <div class="col">Col 2</div> <div class="col">Col 3</div> <div class="col">Col 4</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,8 +10,9 @@ @import "singularitygs"; @import "singularity-extras"; $gutter-size: 5px; $small: min-width 760px; $medium: min-width 1000px; $large: min-width 1200px; * { @@ -47,24 +48,38 @@ div { @include breakpoint($medium) { background-color: orange; } @include breakpoint($large) { background-color: aqua; } &:nth-child(4n+1){ @include grid-span(24, 1); @include breakpoint($small) {@include grid-span(12, 1); clear: left;} @include breakpoint($medium) {@include grid-span(8, 1); clear: left;} @include breakpoint($large) {@include grid-span(6, 1); clear: left;} } &:nth-child(4n+2){ @include grid-span(24, 1); @include breakpoint($small) {@include grid-span(12, 13); } @include breakpoint($medium) {@include grid-span(8, 9); clear: none;} @include breakpoint($large) {@include grid-span(6, 7);} } &:nth-child(4n+3){ @include grid-span(24, 1); @include breakpoint($small) {@include grid-span(12, 1); clear: left; } @include breakpoint($medium) {@include grid-span(8, 17); clear: none;} @include breakpoint($large) {@include grid-span(6, 13);} } &:nth-child(4n+4){ @include grid-span(24, 1); @include breakpoint($small) {@include grid-span(12, 13);} @include breakpoint($medium) {@include grid-span(8, 1); clear: left;} @include breakpoint($large) {@include grid-span(6, 19);} } } @include add-grid(200px 1 150px); @include add-gutter(10px); @include sgs-change('output', 'calc'); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,52 +29,179 @@ div { height: 25vh; color: white; } @media (min-width: 760px) { .col { background-color: purple; } } @media (min-width: 1000px) { .col { background-color: orange; } } @media (min-width: 1200px) { .col { background-color: aqua; } } .col:nth-child(4n+1) { width: 100%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } @media (min-width: 760px) { .col:nth-child(4n+1) { width: 50%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } } @media (min-width: 1000px) { .col:nth-child(4n+1) { width: 33.33333%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } } @media (min-width: 1200px) { .col:nth-child(4n+1) { width: 25%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } } .col:nth-child(4n+2) { width: 100%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } @media (min-width: 760px) { .col:nth-child(4n+2) { width: 50%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } } @media (min-width: 1000px) { .col:nth-child(4n+2) { width: 33.33333%; float: left; margin-right: -100%; margin-left: 33.33333%; clear: none; padding-right: 5px; clear: none; } } @media (min-width: 1200px) { .col:nth-child(4n+2) { width: 25%; float: left; margin-right: -100%; margin-left: 25%; clear: none; padding-right: 5px; } } .col:nth-child(4n+3) { width: 100%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } @media (min-width: 760px) { .col:nth-child(4n+3) { width: 50%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } } @media (min-width: 1000px) { .col:nth-child(4n+3) { width: 33.33333%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; clear: none; } } @media (min-width: 1200px) { .col:nth-child(4n+3) { width: 25%; float: left; margin-right: -100%; margin-left: 50%; clear: none; padding-right: 5px; } } .col:nth-child(4n+4) { width: 100%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } @media (min-width: 760px) { .col:nth-child(4n+4) { width: 50%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } } @media (min-width: 1000px) { .col:nth-child(4n+4) { width: 33.33333%; float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } } @media (min-width: 1200px) { .col:nth-child(4n+4) { width: 25%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } } .main { width: -webkit-calc((((100% - (350px + 20px)) / (1))) * 1); width: calc((((100% - (350px + 20px)) / (1))) * 1); float: left; margin-right: -100%; margin-left: -webkit-calc((200px + 10px)); @@ -92,7 +219,7 @@ div { .secondary-sidebar { background: green; width: 150px; float: right; margin-left: 0; margin-right: 0; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,10 +16,10 @@ <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> <div class="col">Col 1</div> <div class="col">Col 2</div> <div class="col">Col 3</div> <div class="col">Col 4</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> -
Tony Finlay revised this gist
Aug 13, 2015 . 2 changed files with 23 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,8 +9,11 @@ @import "breakpoint"; @import "singularitygs"; @import "singularity-extras"; $gutter-size: 5px; $small: min-width 960px; $medium: min-width 1200px; * { box-sizing: border-box; } @@ -38,6 +41,14 @@ div { padding-bottom: $gutter-size; height: 25vh; color: white; @include breakpoint($small) { background-color: purple; } @include breakpoint($medium) { background-color: orange; } &:nth-child(4n+1){ @include grid-span(6, 1); clear: left; @@ -72,3 +83,4 @@ div { @include grid-span(1, 3); } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,6 +29,16 @@ div { height: 25vh; color: white; } @media (min-width: 960px) { .col { background-color: purple; } } @media (min-width: 1200px) { .col { background-color: orange; } } .col:nth-child(4n+1) { width: 25%; float: left; -
Tony Finlay revised this gist
Aug 13, 2015 . 2 changed files with 7 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,6 +10,7 @@ @import "singularitygs"; @import "singularity-extras"; $gutter-size: 5px; * { box-sizing: border-box; } @@ -29,12 +30,12 @@ div { position: relative; @include add-grid(24); @include grid-span(24, 1); @include add-gutter($gutter-size); } .col{ background:black; background-clip:content-box; padding-bottom: $gutter-size; height: 25vh; color: white; &:nth-child(4n+1){ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,7 +25,7 @@ div { .col { background: black; background-clip: content-box; padding-bottom: 5px; height: 25vh; color: white; } @@ -34,7 +34,7 @@ div { float: left; margin-right: -100%; clear: none; padding-right: 5px; clear: left; } .col:nth-child(4n+2) { @@ -43,15 +43,15 @@ div { margin-right: -100%; margin-left: 25%; clear: none; padding-right: 5px; } .col:nth-child(4n+3) { width: 25%; float: left; margin-right: -100%; margin-left: 50%; clear: none; padding-right: 5px; } .col:nth-child(4n+4) { width: 25%; -
Tony Finlay revised this gist
Aug 13, 2015 . 4 changed files with 22 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,5 +27,6 @@ </div> </div> <div class="primary-sidebar"></div> <div class="secondary-sidebar"></div> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -52,7 +52,7 @@ div { } } @include add-grid(200px 1 100px); @include add-gutter(10px); @include sgs-change('output', 'calc'); @@ -66,3 +66,8 @@ div { @include grid-span(1, 1); } .secondary-sidebar { background: green; @include grid-span(1, 3); } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -63,11 +63,12 @@ div { } .main { width: -webkit-calc((((100% - (300px + 20px)) / (1))) * 1); width: calc((((100% - (300px + 20px)) / (1))) * 1); float: left; margin-right: -100%; margin-left: -webkit-calc((200px + 10px)); margin-left: calc((200px + 10px)); background: red; } @@ -78,3 +79,11 @@ div { margin-right: -100%; margin-left: 0; } .secondary-sidebar { background: green; width: 100px; float: right; margin-left: 0; margin-right: 0; } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,5 +27,6 @@ </div> </div> <div class="primary-sidebar"></div> <div class="secondary-sidebar"></div> </body> </html> -
Tony Finlay created this gist
Aug 13, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Test</title> <link rel="stylesheet" href="css/test.css"> </head> <body> <div class="main"> <div class="inner"> <div class="col">Col 1</div> <div class="col">Col 2</div> <div class="col">Col 3</div> <div class="col">Col 4</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> </div> </div> <div class="primary-sidebar"></div> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ // ---- // Sass (v3.4.14) // Compass (v1.0.3) // Breakpoint (v2.5.0) // Singularity Extras (v1.0.0) // Singularity.gs (v1.6.2) // ---- @import "breakpoint"; @import "singularitygs"; @import "singularity-extras"; * { box-sizing: border-box; } body { margin: 0; padding: 0; } div { height: 100vh; margin: 0; padding: 0; } .inner{ position: relative; @include add-grid(24); @include grid-span(24, 1); @include add-gutter(20px); } .col{ background:black; background-clip:content-box; padding-bottom: 20px; height: 25vh; color: white; &:nth-child(4n+1){ @include grid-span(6, 1); clear: left; } &:nth-child(4n+2){ @include grid-span(6, 7); } &:nth-child(4n+3){ @include grid-span(6, 13); } &:nth-child(4n+4){ @include grid-span(6, 19); } } @include add-grid(200px 1); @include add-gutter(10px); @include sgs-change('output', 'calc'); .main { @include grid-span(1, 2); background: red; } .primary-sidebar { background: green; @include grid-span(1, 1); } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,80 @@ * { box-sizing: border-box; } body { margin: 0; padding: 0; } div { height: 100vh; margin: 0; padding: 0; } .inner { position: relative; width: 100%; float: right; margin-left: 0; margin-right: 0; clear: none; } .col { background: black; background-clip: content-box; padding-bottom: 20px; height: 25vh; color: white; } .col:nth-child(4n+1) { width: 25%; float: left; margin-right: -100%; clear: none; padding-right: 20px; clear: left; } .col:nth-child(4n+2) { width: 25%; float: left; margin-right: -100%; margin-left: 25%; clear: none; padding-right: 20px; } .col:nth-child(4n+3) { width: 25%; float: left; margin-right: -100%; margin-left: 50%; clear: none; padding-right: 20px; } .col:nth-child(4n+4) { width: 25%; float: right; margin-left: 0; margin-right: 0; clear: none; padding-right: 0; } .main { width: -webkit-calc((((100% - (200px + 10px)) / (1))) * 1); width: calc((((100% - (200px + 10px)) / (1))) * 1); float: right; margin-left: 0; margin-right: 0; background: red; } .primary-sidebar { background: green; width: 200px; float: left; margin-right: -100%; margin-left: 0; } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Test</title> <link rel="stylesheet" href="css/test.css"> </head> <body> <div class="main"> <div class="inner"> <div class="col">Col 1</div> <div class="col">Col 2</div> <div class="col">Col 3</div> <div class="col">Col 4</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> <div class="col">Col 5</div> <div class="col">Col 6</div> <div class="col">Col 7</div> <div class="col">Col 8</div> </div> </div> <div class="primary-sidebar"></div> </body> </html>