Skip to content

Instantly share code, notes, and snippets.

@mavisland
Created April 7, 2017 12:18
Show Gist options
  • Select an option

  • Save mavisland/593d40d5f6a62628644cf7fc77e3e99c to your computer and use it in GitHub Desktop.

Select an option

Save mavisland/593d40d5f6a62628644cf7fc77e3e99c to your computer and use it in GitHub Desktop.
Organize your CSS properties however you dang like
.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