Created
February 5, 2015 04:40
-
-
Save JeongInyoung/6cdaf960e8e9e4e9cdb3 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.9) | |
// Compass (v1.0.1) | |
// ---- | |
=table-scaffolding | |
th | |
text-align: center | |
font-weight: bold | |
td, th | |
padding: 2px | |
=left($dist) | |
float: left | |
margin-left: $dist | |
#data | |
+left(10px) | |
+table-scaffolding |
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
#data { | |
float: left; | |
margin-left: 10px; | |
} | |
#data th { | |
text-align: center; | |
font-weight: bold; | |
} | |
#data td, #data th { | |
padding: 2px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment