/ Published in: CSS
Expand |
Embed | Plain Text
/*** POSITION ***/ .left { float: left; } .right { float: right; } .clear { clear: both; } /*** FONT/TEXT ***/ .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .sans-serif { font-family: 'Verdana', Tahoma, Helvetica, Arial, trebuchet MS, sans-serif } .serif { font-family: 'Georgia', Times New Roman, Times, serif; } .monospace { font-family: 'Courier New', Lucida Console, Courier, monospace; } /*** COLOR ***/ .black { background: #000000; } .silver { background: #c0c0c0; } .gray { background: #808080; } .white { background: #FFFFFF; } .maroon { background: #800000; } .red { background: #FF0000; } .purple { background: #800080; } .fuchsia { background: #FF00FF; } .green { background: #008800; } .lime { background: #00FF00; } .olive { background: #808000; } .yellow { background: #FFFF00; } .navy { background: #000080; } .blue { background: #0000FF; } .teal { background: #008080; } .aqua { background: #00FFFF; } /*** EXTRA ***/ span.no-style { border 0;margin:0;padding:0;display:inline;background:none;float:none; } li.no-style { border:0;margin:0;padding:0;display:inline;list-style: disc;background:none;float:none; } a.no-style { border:0;margin:0;padding:0;display:inline;text-decoration:underline;color: #00F;background:none;float:none; } div.no-style { border:0;margin:0;padding:0;display:block;background:none;float:none; } .mark { background: #FCFC05; }
You need to login to post a comment.
