37 lines
626 B
SCSS
37 lines
626 B
SCSS
|
|
ul.articles-index {
|
||
|
|
list-style-type: none;
|
||
|
|
padding-left: 0;
|
||
|
|
|
||
|
|
li {
|
||
|
|
margin-top: 1rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
margin: 0;
|
||
|
|
|
||
|
|
&>a {
|
||
|
|
color: var(--text);
|
||
|
|
text-decoration: none;
|
||
|
|
font-weight: bold;
|
||
|
|
|
||
|
|
&:visited {
|
||
|
|
color: var(--lavender);
|
||
|
|
}
|
||
|
|
|
||
|
|
&:hover {
|
||
|
|
color: var(--sky);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&::before {
|
||
|
|
content: "-";
|
||
|
|
margin-left: .5rem;
|
||
|
|
margin-right: .5rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.date {
|
||
|
|
color: var(--subtext0);
|
||
|
|
}
|
||
|
|
}
|