15 lines
263 B
CSS
15 lines
263 B
CSS
html {
|
|
background-color: #000;
|
|
color: #FFF;
|
|
#important_wrapper { /* id */
|
|
margin-left: 10px;
|
|
border-left: 3px solid red;
|
|
padding-left: 20px;
|
|
}
|
|
.important { /* classe */
|
|
font-weight: bolder;
|
|
color: red;
|
|
}
|
|
.pas_important {
|
|
font-weight: normal;
|
|
} |