53 lines
544 B
Text
53 lines
544 B
Text
|
main
|
|||
|
{
|
|||
|
margin: 2em auto;
|
|||
|
|
|||
|
p, ul
|
|||
|
{
|
|||
|
margin: 0.5em auto;
|
|||
|
width: 50em;
|
|||
|
max-width: 95%;
|
|||
|
line-height: 1.5em;
|
|||
|
}
|
|||
|
|
|||
|
ul
|
|||
|
{
|
|||
|
padding: 0;
|
|||
|
list-style: none;
|
|||
|
|
|||
|
> li::before
|
|||
|
{
|
|||
|
content: "‒ ";
|
|||
|
margin-right: 0.33em;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.intro
|
|||
|
{
|
|||
|
margin: 1em auto;
|
|||
|
text-align: center;
|
|||
|
font-size: 1.1em;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
h2
|
|||
|
{
|
|||
|
display: block;
|
|||
|
margin: 1em auto;
|
|||
|
font-size: 2em;
|
|||
|
|
|||
|
width: 55rem;
|
|||
|
max-width: 95%;
|
|||
|
|
|||
|
&.num
|
|||
|
{
|
|||
|
counter-increment: h2counter;
|
|||
|
&::before
|
|||
|
{
|
|||
|
content: counter(h2counter)". ";
|
|||
|
color: @primary;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|