Writing is Designing: Three Principles for Writing Effective UX Copy
Design MarketingImagine, if you will, that you’ve discovered a cute new gem of a bakery. The pastry chef welcomes you into the ambient, delightfully quirky...
How OCD is your CSS? Are you following object-oriented conventions? Do you adhere to a strict style guide? Do you have a hard time sleeping if your properties haven’t been alphabetized, or if they aren’t organized into sections like “Positioning” and “Box Model”?
If so, you are a perfect candidate for using a css template like css-burrito.
To understand why you would want to use this template, it is a great idea to familiarize yourself with the following css architectures:
Separate structure and skin – Structure properties like width and height should be separated from skin properties like background and border.
Separate content from container – Content modules like buttons and lists should not be dependent on their parent containers.
Increase the semantic value of HTML and content.
Decrease the expectation of a specific HTML structure.
Organize your css files into sections like base rules, layout rules and modules so that the styling will be flexible and easily maintainable.
Ok, now that you’re familiar with those concepts, are you hungry for some burrito?
css-burrito is a Sass template to help integrate suggested best practices into any project.
To use this template, just delete your current stylesheets directory (or whatever the folder that houses your CSS files is named), and replace it with this one. Then update your path on your projects index page if necessary.
Note for Rails Users:
Any new .scss files that are created by generating Rails controls will not be used, and can be deleted.
css-burrito has four main ingredients.
This section serves three purposes.
It imports all of the files from the Libs, Core and Module sections.
It has an Inbox section where developers that don’t usually work on the project can leave temporary files that are easily seen by the maintainers of the project.
It has a Shame section for quick fixes, hacks, and other questionable techniques. Be sure to fix them later.
This section will house CSS libraries like Normalize, Compass, Bootstrap, Foundation or Pure.
It also contains a library-variable-overrides file. Any overrides to Bootstrap or other library variables should be made in this file to prevent unnecessary overwriting.
Normalize is included in the libs folder by default.
There are five core components:
Settings – @font-face and global variables.
Helpers – Extends, Functions, Mixins.
Base – Base-level tags (body, p, etc.).
Typography – Base-level typography (colors, fonts).
Layouts – Base-level layout (margin, padding, sizing).
Any unit of style that can be found across multiple pages (Buttons, Navigations, Modals).
Most of your styles should be found here.
Inside the layouts file and in the example-module file, there is a section for styling states.
States are styles that override all other styles, usually via JavaScript.
States are generally applied to the same element as a layout rule, or to the same element as a base module.
An example would be a navigation drop down, or a message that displays a success or error state.
State classnames should be written as a boolean. For example, .is-collapsed or is-error.
When state rules are added to specific modules, the module name should be included in the classname. For example, an active tab state could be written as .is-tab-active.
This template should feel intuitive and easy to use. The goal is to keep everything organized so that large projects will scale nicely without duplicating code, or having unnecessary increases in specificity.
See something that could be improved? Let us know in the comments.
Imagine, if you will, that you’ve discovered a cute new gem of a bakery. The pastry chef welcomes you into the ambient, delightfully quirky...
There are several design patterns used these days in the .NET ecosystem. What are they? What are the benefits and drawbacks of each pattern?...
Large organizations with multiple software development departments may find themselves supporting multiple web frameworks across the organization. This can make it challenging to keep...