Increased body width on larger displays and slight decreased code font size

This commit is contained in:
Fabio Manganiello 2022-08-24 01:31:17 +02:00
parent d53ceba7ee
commit c407c01675
1 changed files with 7 additions and 1 deletions

View File

@ -39,6 +39,12 @@ body {
max-width: 42rem;
}
@media only screen and (min-width: 1024px) {
body {
max-width: 60rem;
}
}
img {
max-width: 100%;
height: auto;
@ -50,7 +56,7 @@ b, strong {
code, kbd, samp, pre {
font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
font-size: 1rem;
font-size: 0.9em;
background-color: var(--black) !important;
}