Skip to content

Instantly share code, notes, and snippets.

@bennadel
Created March 25, 2014 10:47
Show Gist options
  • Save bennadel/9759151 to your computer and use it in GitHub Desktop.
Save bennadel/9759151 to your computer and use it in GitHub Desktop.
Object Oriented CSS (OOCSS) And Being Generic With Your Base CSS Classes
<!--- Output school archive message. --->
<div id="archived-school-message">
<div class="message-content">
This school was archived on 03/01/2009
</div>
</div>
<!--- Output school active status. --->
<div id="archived-school-message">
<div class="message-content">
This school was deactivated on 03/01/2009
</div>
</div>
<!--- Output school archive message. --->
<div class="warning-message-box">
<div class="message-content">
This school was deactived on 03/01/2009
</div>
</div>
<!--- Output school archive message. --->
<div class="warning-message-box school-status-warning-message-box">
<div class="message-content">
This school was deactived on 03/01/2009
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment