50 lines
579 B
SCSS
50 lines
579 B
SCSS
h1 {
|
|
margin: 16px 0;
|
|
}
|
|
|
|
h2 {
|
|
margin: 12px 0;
|
|
}
|
|
|
|
dl {
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
|
|
&:before,
|
|
&:after {
|
|
display: table;
|
|
content: " ";
|
|
}
|
|
|
|
&:after {
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
dt {
|
|
display: inline-block;
|
|
margin: 0 0.5em 0 0;
|
|
|
|
&:after {
|
|
content: ':';
|
|
}
|
|
}
|
|
|
|
dd {
|
|
display: inline-block;
|
|
margin: 0 1em 0 0;
|
|
|
|
font-weight: bold;
|
|
}
|
|
|
|
del {
|
|
text-decoration: line-through;
|
|
background-color: #fbb;
|
|
color: #555;
|
|
}
|
|
|
|
ins {
|
|
text-decoration: none;
|
|
background-color: #d4fcbc;
|
|
} |