diff options
-rw-r--r-- | css/style.css | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/css/style.css b/css/style.css index da49138..8323d74 100644 --- a/css/style.css +++ b/css/style.css @@ -6,6 +6,10 @@ Author: jesús e. /* basic formatting changes (mostly to cater for darker colours) */ +li { + color: white; +} + pre { background: black; color: white; @@ -15,8 +19,9 @@ strong { color: white; } -li { - color: white; +video { + width: 100%; + height: auto; } .content blockquote { @@ -265,7 +270,13 @@ a.navbar-item:hover { } @media screen and (max-width: 1087px) { - .navbar-menu { - background-color: transparent; - } + .navbar-menu { + background-color: transparent; + } +} + +@media screen and (max-width: 480px) { + .main-content { + padding: 0rem; + } } |