Skip to content

Instantly share code, notes, and snippets.

@peterpme
Created February 25, 2014 22:03
Show Gist options
  • Save peterpme/9218845 to your computer and use it in GitHub Desktop.
Save peterpme/9218845 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<button class="one">Click Here For More!</button>
<button class="two">Click Here For More!!</button>
// ----
// 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;
}
*, *: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;
}
<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