21 lines
472 B
Sass
21 lines
472 B
Sass
#publications
|
|
font-weight: 300
|
|
ul
|
|
list-style: none
|
|
margin: 0
|
|
padding: 0
|
|
display: flex
|
|
flex-direction: column
|
|
gap: 1em
|
|
|
|
li
|
|
background: $surface
|
|
border-radius: 8px
|
|
padding: 1em 1.5em
|
|
a
|
|
color: $primary-light
|
|
text-decoration: none
|
|
font-weight: 100
|
|
transition: color 0.3s ease-in-out
|
|
&:hover, &:focus
|
|
color: $accent-light |