Created
January 7, 2015 04:54
-
-
Save ahgood/5c508010d15368414b60 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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 characters
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
//Variables | |
$font-stack: Helvetica, sans-serif; | |
$primary-color: #333; | |
body { | |
font: 100% $font-stack; | |
color: $primary-color; | |
} | |
//Nesting | |
nav { | |
ul { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
li { display: inline-block; } | |
a { | |
display: block; | |
padding: 6px 12px; | |
text-decoration: none; | |
} | |
} | |
//Partials/Import file _reset.scss | |
//@import 'reset'; | |
body { | |
font: 100% Helvetica, sans-serif; | |
background-color: #efefef; | |
} | |
//Mixins | |
@mixin border-radius($radius) { | |
-webkit-border-radius: $radius; | |
-moz-border-radius: $radius; | |
-ms-border-radius: $radius; | |
border-radius: $radius; | |
} | |
.box { @include border-radius(10px); } | |
//Extend/Inheritance | |
.message { | |
border: 1px solid #ccc; | |
padding: 10px; | |
color: #333; | |
} | |
.success { | |
@extend .message; | |
border-color: green; | |
} | |
.error { | |
@extend .message; | |
border-color: red; | |
} | |
.warning { | |
@extend .message; | |
border-color: yellow; | |
} | |
//Operators | |
.container { width: 100%; } | |
article[role="main"] { | |
float: left; | |
width: 600px / 960px * 100%; | |
} | |
aside[role="complimentary"] { | |
float: right; | |
width: 300px / 960px * 100%; | |
} |
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 characters
body { | |
font: 100% Helvetica, sans-serif; | |
color: #333; | |
} | |
nav ul { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
nav li { | |
display: inline-block; | |
} | |
nav a { | |
display: block; | |
padding: 6px 12px; | |
text-decoration: none; | |
} | |
body { | |
font: 100% Helvetica, sans-serif; | |
background-color: #efefef; | |
} | |
.box { | |
-webkit-border-radius: 10px; | |
-moz-border-radius: 10px; | |
-ms-border-radius: 10px; | |
border-radius: 10px; | |
} | |
.message, .success, .error, .warning { | |
border: 1px solid #ccc; | |
padding: 10px; | |
color: #333; | |
} | |
.success { | |
border-color: green; | |
} | |
.error { | |
border-color: red; | |
} | |
.warning { | |
border-color: yellow; | |
} | |
.container { | |
width: 100%; | |
} | |
article[role="main"] { | |
float: left; | |
width: 62.5%; | |
} | |
aside[role="complimentary"] { | |
float: right; | |
width: 31.25%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment