1
0
Fork 0

Add list style

This commit is contained in:
Tommy Vedvik 2019-02-28 21:29:04 +01:00
parent 1219351a9d
commit 272c3d1f95
2 changed files with 20 additions and 10 deletions

View file

@ -25,14 +25,4 @@ a:not(.button) {
img {
max-width: 100%;
}
h1,h2,h3,h4,h5,h6 {
transition: color .6s;
color: var(--title-color);
}
li {
list-style: disc;
}

View file

@ -15,12 +15,15 @@ p {
}
h1, h2, h3, h4, h5 {
transition: color .6s;
color: var(--title-color);
margin: 2.75rem 0 1rem;
font-family: 'Poppins', sans-serif;
font-weight: 600;
line-height: 1.15;
}
h1 {
margin-top: 0;
font-size: 1.802em;
@ -48,4 +51,21 @@ blockquote {
em {
font-style: italic;
}
ul {
list-style-type: disc;
margin-left: 1.25em;
margin-bottom: 1.25em;
li {
margin-bottom: 1em;
}
}
ol {
list-style-type: decimal;
margin-left: 1.25em;
margin-bottom: 1.25em;
li {
margin-bottom: 1em;
}
}