mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
22 lines
381 B
CSS
22 lines
381 B
CSS
#main {
|
|
width: 15em;
|
|
color: blue; }
|
|
#main p {
|
|
border-style: dotted;
|
|
/* Nested comment
|
|
* More nested stuff */
|
|
border-width: 2px; }
|
|
#main .cool {
|
|
width: 100px; }
|
|
|
|
#left {
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
float: left; }
|
|
|
|
#right .header {
|
|
border-style: solid; }
|
|
#right .body {
|
|
border-style: dotted; }
|
|
#right .footer {
|
|
border-style: dashed; }
|