Skip to content

Commit

Permalink
Added markdown file, updated stylesheets
Browse files Browse the repository at this point in the history
  • Loading branch information
bwsewell committed Mar 27, 2012
1 parent 6062f45 commit b605778
Show file tree
Hide file tree
Showing 11 changed files with 937 additions and 378 deletions.
Binary file removed assets/css/.DS_Store
Binary file not shown.
Binary file not shown.
170 changes: 120 additions & 50 deletions assets/css/frameless.css
Expand Up @@ -3,45 +3,64 @@
by Joni Korpi <http://jonikorpi.com/> by Joni Korpi <http://jonikorpi.com/>
licensed under CC0 <http://creativecommons.org/publicdomain/zero/1.0/> licensed under CC0 <http://creativecommons.org/publicdomain/zero/1.0/>
*/ */
/* Defaults for showing/hiding divs based on screen size */
.show-default, .show-tablet, .show-mobile-wide, .show-mobile {
display: none !important; }

.hide-default, .hide-tablet, .hide-mobile-wide, .hide-mobile {
display: block !important; }

/* Default Layout */ /* Default Layout */
.wrapper { @media only screen and (min-width: 1024px) {
width: 1020px; .show-default {
margin: 0 auto; display: block !important; }
padding: 0; }


.col { .hide-default {
display: inline; display: none !important; }
float: left;
margin-left: 10px;
margin-right: 10px; }


.wrapper .col1 { .wrapper {
width: 65px; } width: 1020px;
.wrapper .col2 { margin: 0 auto;
width: 150px; } padding: 0; }
.wrapper .col3 {
width: 235px; } .col {
.wrapper .col4 { display: inline;
width: 320px; } float: left;
.wrapper .col5 { margin-left: 10px;
width: 405px; } margin-right: 10px; }
.wrapper .col6 {
width: 490px; }
.wrapper .col7 {
width: 575px; }
.wrapper .col8 {
width: 660px; }
.wrapper .col9 {
width: 745px; }
.wrapper .col10 {
width: 830px; }
.wrapper .col11 {
width: 915px; }
.wrapper .col12 {
width: 1000px; }


.wrapper .col1 {
width: 65px; }
.wrapper .col2 {
width: 150px; }
.wrapper .col3 {
width: 235px; }
.wrapper .col4 {
width: 320px; }
.wrapper .col5 {
width: 405px; }
.wrapper .col6 {
width: 490px; }
.wrapper .col7 {
width: 575px; }
.wrapper .col8 {
width: 660px; }
.wrapper .col9 {
width: 745px; }
.wrapper .col10 {
width: 830px; }
.wrapper .col11 {
width: 915px; }
.wrapper .col12 {
width: 1000px; } }
/* Tablet Layout */ /* Tablet Layout */
@media only screen and (min-width: 768px) and (max-width: 1024px) { @media only screen and (min-width: 768px) and (max-width: 1023px) {
.show-tablet {
display: block !important; }

.hide-tablet {
display: none !important; }

.wrapper { .wrapper {
width: 720px; width: 720px;
margin: 0 auto; margin: 0 auto;
Expand Down Expand Up @@ -79,8 +98,14 @@
width: 700px; } } width: 700px; } }
/* Mobile Layout */ /* Mobile Layout */
@media only screen and (max-width: 767px) { @media only screen and (max-width: 767px) {
.show-mobile {
display: block !important; }

.hide-mobile {
display: none !important; }

.wrapper { .wrapper {
width: 300px; width: 312px;
margin: 0 auto; margin: 0 auto;
padding: 0; } padding: 0; }


Expand All @@ -91,31 +116,37 @@
margin-right: 10px; } margin-right: 10px; }


.wrapper .col1 { .wrapper .col1 {
width: 80px; } width: 84px; }
.wrapper .col2 { .wrapper .col2 {
width: 280px; } width: 292px; }
.wrapper .col3 { .wrapper .col3 {
width: 280px; } width: 292px; }
.wrapper .col4 { .wrapper .col4 {
width: 280px; } width: 292px; }
.wrapper .col5 { .wrapper .col5 {
width: 280px; } width: 292px; }
.wrapper .col6 { .wrapper .col6 {
width: 280px; } width: 292px; }
.wrapper .col7 { .wrapper .col7 {
width: 280px; } width: 292px; }
.wrapper .col8 { .wrapper .col8 {
width: 280px; } width: 292px; }
.wrapper .col9 { .wrapper .col9 {
width: 280px; } width: 292px; }
.wrapper .col10 { .wrapper .col10 {
width: 280px; } width: 292px; }
.wrapper .col11 { .wrapper .col11 {
width: 280px; } width: 292px; }
.wrapper .col12 { .wrapper .col12 {
width: 280px; } } width: 292px; } }
/* Wide Mobile Layout */ /* Wide Mobile Layout */
@media only screen and (min-width: 480px) and (max-width: 767px) { @media only screen and (min-width: 480px) and (max-width: 767px) {
.show-mobile-wide {
display: block !important; }

.hide-mobile-wide {
display: none !important; }

.wrapper { .wrapper {
width: 480px; width: 480px;
margin: 0 auto; margin: 0 auto;
Expand Down Expand Up @@ -151,6 +182,45 @@
width: 460px; } width: 460px; }
.wrapper .col12 { .wrapper .col12 {
width: 460px; } } width: 460px; } }
/* IE Overwrite */
.oldie .show-default {
display: block !important; }
.oldie .hide-default {
display: none !important; }
.oldie .wrapper {
width: 1020px;
margin: 0 auto;
padding: 0; }
.oldie .col {
display: inline;
float: left;
margin-left: 10px;
margin-right: 10px; }
.oldie .wrapper .col1 {
width: 65px; }
.oldie .wrapper .col2 {
width: 150px; }
.oldie .wrapper .col3 {
width: 235px; }
.oldie .wrapper .col4 {
width: 320px; }
.oldie .wrapper .col5 {
width: 405px; }
.oldie .wrapper .col6 {
width: 490px; }
.oldie .wrapper .col7 {
width: 575px; }
.oldie .wrapper .col8 {
width: 660px; }
.oldie .wrapper .col9 {
width: 745px; }
.oldie .wrapper .col10 {
width: 830px; }
.oldie .wrapper .col11 {
width: 915px; }
.oldie .wrapper .col12 {
width: 1000px; }

.alpha { .alpha {
margin-left: 0; } margin-left: 0; }


Expand Down Expand Up @@ -246,11 +316,11 @@ textarea {
These are easy to forget These are easy to forget
*/ */
::selection { ::selection {
background: red; background: #007BC1;
color: white; } color: white; }


::-moz-selection { ::-moz-selection {
background: red; background: #007BC1;
color: white; } color: white; }


img::selection { img::selection {
Expand All @@ -260,7 +330,7 @@ img::-moz-selection {
background: transparent; } background: transparent; }


body { body {
-webkit-tap-highlight-color: rgba(255, 0, 0, 0.62); } -webkit-tap-highlight-color: #007BC1; }


/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */ /* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
.clearfix:before, .clearfix:before,
Expand Down

0 comments on commit b605778

Please sign in to comment.