32 lines
510 B
CSS
32 lines
510 B
CSS
.character {
|
|
background-color: var(--inset-bg-color);
|
|
border-radius: var(--border-radius);
|
|
padding: 1em;
|
|
|
|
h5 {
|
|
font-size: 1.1em;
|
|
margin: 0;
|
|
}
|
|
|
|
h5 a:link, h5 a:visited {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
> ul {
|
|
padding: 0;
|
|
li {
|
|
list-style-type: none;
|
|
display: inline;
|
|
color: var(--secondary-text-color);
|
|
font-size: .8em;
|
|
&:after {
|
|
content: " • ";
|
|
}
|
|
&:last-child:after {
|
|
content: "";
|
|
}
|
|
}
|
|
}
|
|
}
|