1
0
Fork 0

Text alignment switched to justified; right-side padding in lists

This commit is contained in:
Marek Suchánek 2018-01-20 16:27:12 +01:00
parent e9c74756ac
commit ed1dca9cf9

View file

@ -62,6 +62,7 @@ body {
color: #333;
padding: 0 10px;
font-family: 'Overpass', sans-serif;
text-align: justify;
}
h1, h2, h3 {
@ -72,15 +73,12 @@ h1, h2, h3 {
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:link {
color: #009dbb;
}
a:visited {
color: #36738a;
}
@ -92,3 +90,8 @@ code {
background-color: #f2f2f2;
border: 1px solid #e0e0e0;
}
ul {
/* Indent list elements both from the left and the right */
padding: 0 50px;
}