Basic styles
This commit is contained in:
@ -0,0 +1,52 @@
|
||||
body {
|
||||
font-size: 12pt;
|
||||
line-height: 1.5;
|
||||
|
||||
max-width: 60em;
|
||||
margin: 0 auto;
|
||||
padding: 1em;
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: 10em auto;
|
||||
grid-column-gap: 2em;
|
||||
}
|
||||
|
||||
header {
|
||||
grid-column: 1/-1;
|
||||
padding: 2rem 0;
|
||||
font-weight: bold;
|
||||
font-size: 1.5em;
|
||||
|
||||
a { color: inherit }
|
||||
}
|
||||
|
||||
aside {
|
||||
span.title {
|
||||
display: block;
|
||||
margin: 2em 0 1em 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
|
||||
li a {
|
||||
color: #000;
|
||||
display: block;
|
||||
padding: 0 .5em;
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #E1140A;
|
||||
|
||||
&:hover { text-decoration: underline }
|
||||
}
|
||||
|
Reference in New Issue
Block a user