Skip to content

Instantly share code, notes, and snippets.

@daneden
Last active April 12, 2016 04:09
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daneden/16edc2b5326f87e1907e to your computer and use it in GitHub Desktop.
Save daneden/16edc2b5326f87e1907e to your computer and use it in GitHub Desktop.
Aspirational Dropbox SCSS Guidelines (Draft)

Aspirational Dropbox SCSS Principles

This is purposefully ambitious and aspirational. Some concepts that are worth understanding in addition to the principles outlined here include:

Here’s a CodePen I’ll periodically update with the compiled CSS to use as a testing playground.

Separation of Concerns

The overarching philosophy with Dropbox SCSS is a separation of concerns. Components should live as independently as possible. Overrides and conflicting rules should be avoided and negated by abstractions. For example:

// Bad code
// HTML:
// <div class=“modal compact”></div>
.modal {
  padding: 32px;
  background-color: color(gray, x-light);

  &.compact {
    padding: 23px;
  }
}

// Good code
// HTML:
// <div class=“o-modal u-l-island”></div>
// <div class=“o-modal u-l-isle”></div>

// objects/_modal.scss
.o-modal {
  background-color: color(gray, x-light);
}

// helpers/_layout.scss
.u-l-island {
  padding: 32px;
}

.u-l-isle {
  padding: 23px;
}

Partials And Organisation

The typical SCSS file structure looks like this:

  • File: global.scss (imports partial importers)
  • Directory: partial/type name (e.g. “variables”)
    • File: __all.scss (imports siblings)
    • File: _file.scss (self-contained, no imports)

The double-underscoring of partial importers is twofold:

  1. It helps ensure that the importer is always the first file listed in file views, ls, etc.
  2. It’s extremely explicit in its function—easy to spot the double-underscore and know that its only task is to import siblings.

Namespaced Classes

Where possible, classes should be namespaced. This helps facilitate abstraction and style isolation, as well as assisting debugging and development.

// `.o-` for objects.
// For example, in objects/_modal.scss:
.o-modal { }

// `.c-` for components
// components/_buttons.scss
.c-btn { }

// `.u-` for utilities and helpers
// helpers/_typography.scss
.u-font-small { }

// helpers/_layout.scss
.u-l-island { }

Deference to Variables

Unique and arbitrary colors and numbers should be avoided. Always favor defined units, functions, and variables.

// Bad code
a {
  color: #007ee5;
}

p {
  margin-bottom: 23px;
}

// Good code
a {
  color: color(main);
}

p {
  margin-bottom: $baseline;
}

Grouping And Ordering For Properties And Nested Styles

Properties are grouped and ordered like so:

  1. Layout and box-model properties
  2. Typographic properties
  3. Stylistic properties
  4. UI properties
  5. Pseudo-elements
  6. Pseudo-selectors
  7. Modifier classes
  8. Nested elements

Here’s a fairly comprehensive example:

.c-btn {
  display: inline-block;
  padding: 7px 12px;

  text-align: center;
  text-decoration: none;
  font-weight: 600;

  border: 1px solid;
  border-radius: 3px;

  cursor: pointer;

  &::before {
    content: none;
  }

  &:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(color(main), .3);
  }

  &#{&}--big {
    padding: 12px 24px;
  }

  > .c-icon {
    display: inline-block;
    vertical-align: middle;
  }
}

Unit Values

Always prefer a unitless ‘0’ to ‘none’ where applicable.

// Bad code
.u-l-trim {
  margin: none;
}

// Good code
.u-l-trim {
  margin: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment