Add list style
This commit is contained in:
parent
1219351a9d
commit
272c3d1f95
2 changed files with 20 additions and 10 deletions
|
@ -26,13 +26,3 @@ a:not(.button) {
|
||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,h2,h3,h4,h5,h6 {
|
|
||||||
transition: color .6s;
|
|
||||||
color: var(--title-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
li {
|
|
||||||
list-style: disc;
|
|
||||||
}
|
|
|
@ -15,12 +15,15 @@ p {
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5 {
|
h1, h2, h3, h4, h5 {
|
||||||
|
transition: color .6s;
|
||||||
|
color: var(--title-color);
|
||||||
margin: 2.75rem 0 1rem;
|
margin: 2.75rem 0 1rem;
|
||||||
font-family: 'Poppins', sans-serif;
|
font-family: 'Poppins', sans-serif;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
line-height: 1.15;
|
line-height: 1.15;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
font-size: 1.802em;
|
font-size: 1.802em;
|
||||||
|
@ -49,3 +52,20 @@ blockquote {
|
||||||
em {
|
em {
|
||||||
font-style: italic;
|
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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue