Created
February 25, 2014 22:03
-
-
Save peterpme/9218845 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
<button class="one">Click Here For More!</button> | |
<button class="two">Click Here For More!!</button> |
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.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
*, *:before, *:after { | |
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; | |
} | |
button{ | |
border:none; | |
color:white; | |
font-size:20px; | |
} | |
.one{ | |
background:red; | |
padding:1em; | |
} | |
.two{ | |
background:blue; | |
padding:16px; | |
} |
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
*, *:before, *:after { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
button { | |
border: none; | |
color: white; | |
font-size: 20px; | |
} | |
.one { | |
background: red; | |
padding: 1em; | |
} | |
.two { | |
background: blue; | |
padding: 16px; | |
} |
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
<button class="one">Click Here For More!</button> | |
<button class="two">Click Here For More!!</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment