Created
March 25, 2014 10:47
-
-
Save bennadel/9759151 to your computer and use it in GitHub Desktop.
Object Oriented CSS (OOCSS) And Being Generic With Your Base CSS Classes
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
<!--- Output school archive message. ---> | |
<div id="archived-school-message"> | |
<div class="message-content"> | |
This school was archived on 03/01/2009 | |
</div> | |
</div> |
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
<!--- Output school active status. ---> | |
<div id="archived-school-message"> | |
<div class="message-content"> | |
This school was deactivated on 03/01/2009 | |
</div> | |
</div> |
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
<!--- Output school archive message. ---> | |
<div class="warning-message-box"> | |
<div class="message-content"> | |
This school was deactived on 03/01/2009 | |
</div> | |
</div> |
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
<!--- 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