Updates to about page

This commit is contained in:
Deon George
2022-11-04 15:03:27 +11:00
parent 34f289953d
commit edd41ad187
4 changed files with 80 additions and 35 deletions

36
public/css/fixes.css vendored
View File

@@ -16,4 +16,40 @@
.input-group .form-select {
border-top-right-radius: 4px !important;
border-bottom-right-radius: 4px !important;
}
/* Using OL instead of UL */
ol {
text-align: left;
}
#content ol {
margin: 0 1ch;
padding-left: 1ch;
list-style-type: none;
}
#content ol:not(.pagination) li {
margin: 0 1ch;
text-indent: -3ch;
padding-left: 3ch;
display: block;
counter-increment: count-me;
}
#content ol:not(.pagination) li::before {
content: counter(count-me) ") ";
color: #0a0;
}
#content ol li:last-child {
margin-bottom: 16px;
}
/* Fix h5 which is 25% larger than h4 */
#content h4:not(.alert-heading) {
color: #c60;
}
#content h5:not(.alert-heading) {
font-size: 0.9rem;
}