Last active
December 4, 2015 21:25
-
-
Save kpennell/9b63acf71fb0c818fa20 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.14) | |
// Compass (v1.0.3) | |
// ---- | |
#sidebar { | |
width: 300px; | |
.box { | |
border-radius: 10px; | |
background-color: #eee; | |
h2 { | |
font-size: 14px; | |
font-weight: bold; | |
} | |
ul { | |
margin: 0; | |
padding: 0; | |
a { | |
display: block; | |
} | |
} | |
} | |
} |
This file contains 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
#sidebar { | |
width: 300px; | |
} | |
#sidebar .box { | |
border-radius: 10px; | |
background-color: #eee; | |
} | |
#sidebar .box h2 { | |
font-size: 14px; | |
font-weight: bold; | |
} | |
#sidebar .box ul { | |
margin: 0; | |
padding: 0; | |
} | |
#sidebar .box ul a { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment