43 lines
404 B
Text
43 lines
404 B
Text
|
html, body
|
|||
|
{
|
|||
|
margin: 0;
|
|||
|
padding: 0;
|
|||
|
font-family: @font;
|
|||
|
font-size: 1.075em;
|
|||
|
}
|
|||
|
|
|||
|
body
|
|||
|
{
|
|||
|
background: @background;
|
|||
|
color: @foreground;
|
|||
|
|
|||
|
line-height: 1.6em;
|
|||
|
}
|
|||
|
|
|||
|
a
|
|||
|
{
|
|||
|
transition: opacity 0.2s ease;
|
|||
|
|
|||
|
border-bottom: solid @foreground thin;
|
|||
|
color: @foreground;
|
|||
|
text-decoration: none;
|
|||
|
|
|||
|
&:hover
|
|||
|
{
|
|||
|
opacity: 0.75;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
ul
|
|||
|
{
|
|||
|
margin: 0;
|
|||
|
padding: 0;
|
|||
|
|
|||
|
list-style: "– ";
|
|||
|
|
|||
|
> li
|
|||
|
{
|
|||
|
margin: 1em 0;
|
|||
|
}
|
|||
|
}
|