Created
November 30, 2014 21:07
-
-
Save SandyLudosky/af02dcb60ee45d3a448d 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
<html> | |
<body> | |
<div class="box"><h4>Grey Box</h4></div> | |
<div class="success"><h4>Green Box</h4></div> | |
<div class="error"><h4>Red Box</h4></div> | |
<footer>© 2014 - Someone <a href="#">legal link</a></a> </footer> | |
</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 characters
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
// Place Holders & Extends | |
// Color Variables | |
$grey-light: #ddd; | |
$grey-dark: #444; | |
$red:#e74c3c; | |
$red-light: lighten($red, 20); | |
$red-dark: darken($red, 20); | |
$red-extradark: darken($red, 30); | |
$green: #2ecc71; | |
$green-light: lighten($green, 20); | |
$green-dark: darken($green, 20); | |
$green-extradark: darken($green, 30); | |
// Layout Variables | |
$margins: 2em; | |
$padding: 1em; | |
// custom css properties for success and error | |
@mixin custom ($width:1px, $border_color:$grey-dark, $bg_color:$grey-light, $text_color:$grey-dark ) { | |
border: $width solid $border_color; | |
background: $bg_color; | |
color: $text_color; | |
} | |
//Placeholders | |
%checkmark { | |
&:after{ | |
content: "\2713 "; | |
margin-left: 1em; | |
} | |
} | |
h4 { | |
font-weight: bold; | |
@extend %checkmark; | |
} | |
.box { | |
margin: $margins; | |
text-align: center; | |
@include custom; | |
} | |
.success { | |
@extend .box; | |
} | |
.error { | |
@extend .box; | |
} | |
footer { | |
text-align: center; | |
a { | |
text-decoration: none; | |
color: $red-dark; | |
&:hover, &:active, &:focus { | |
color: $red-extradark; | |
} | |
} | |
} |
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
h4:after { | |
content: "\2713 "; | |
margin-left: 1em; | |
} | |
h4 { | |
font-weight: bold; | |
} | |
.box, .success, .error { | |
margin: 2em; | |
text-align: center; | |
border: 1px solid #444444; | |
background: #dddddd; | |
color: #444444; | |
} | |
footer { | |
text-align: center; | |
} | |
footer a { | |
text-decoration: none; | |
color: #a82315; | |
} | |
footer a:hover, footer a:active, footer a:focus { | |
color: #7b190f; | |
} |
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
<html> | |
<body> | |
<div class="box"><h4>Grey Box</h4></div> | |
<div class="success"><h4>Green Box</h4></div> | |
<div class="error"><h4>Red Box</h4></div> | |
<footer>© 2014 - Someone <a href="#">legal link</a></a> </footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment