Created
April 7, 2017 12:18
-
-
Save mavisland/593d40d5f6a62628644cf7fc77e3e99c to your computer and use it in GitHub Desktop.
Organize your CSS properties however you dang like
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
| .class { | |
| /* GENERAL */ | |
| display: #; | |
| content: ”; | |
| /* SIZING */ | |
| width: #; | |
| min-width: #; | |
| max-width: #; | |
| height: #; | |
| min-height: #; | |
| max-height: #; | |
| padding: #; | |
| overflow: #; | |
| box-sizing: #; | |
| /* POSITIONING */ | |
| position: #; | |
| top/right/bottom/left/z-index: #; | |
| margin: #; | |
| transform: #; | |
| /* STYLING */ | |
| border: #; | |
| background: #; | |
| opacity: #; | |
| list-style/appearence: #; | |
| filter: #; | |
| /* TYPOGRAPHY */ | |
| font-family: #; | |
| font-size: #; | |
| font-weight: #; | |
| text-transform: #; | |
| text-decoration: #; | |
| text-align: #; | |
| color: #; | |
| /* UX */ | |
| visibility: #; | |
| pointer-events: #; | |
| user-select: #; | |
| cursor: #; | |
| /* EFFECTS */ | |
| transition/animation: #; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment