/ Published in: CSS
* A set of starter styles that can be added to any library
* The most-used styles I add to all of my sites
* The most-used styles I add to all of my sites
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* Starter Styles */ .right { float: right; } .left { float: left; } .center { text-align: center; } .relative { position: relative; } .absolute { position: absolute; top: 0; left: 0; } .absolute.right { float: none; right: 0; left: auto; } .underline { text-decoration: underline; } .uppercase { text-transform: uppercase; } .overflow { overflow: auto; } .clear { clear: both; } .hide { display: none; } ul.plain, ol.plain { margin: 0 0 10px 0; } ul.plain li, ol.plain li { list-style: none; } ul.after, ol.after { margin-left: 0; } ul.after li:after, ol.after li:after { content: "|"; padding-left: 10px; } ul.after li:last-child:after, ol.after li:last-child:after { content: ""; padding-left: 0; }