diff options
author | Noah <mounderfod@gmail.com> | 2023-07-30 11:23:37 +0000 |
---|---|---|
committer | Noah <mounderfod@gmail.com> | 2023-07-30 11:23:37 +0000 |
commit | 8a28f6e8b0ef3ecec9cf6b5846fa1f64f0952890 (patch) | |
tree | ef98b2db039ac8b5bb8b6984eee460644773f2cd | |
parent | d5c5ad1a79151340680f174b51218e7247562b35 (diff) | |
download | website-8a28f6e8b0ef3ecec9cf6b5846fa1f64f0952890.tar.gz |
Fix banner resizing
-rw-r--r-- | assets/index.css | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/assets/index.css b/assets/index.css index 6c9ba66..eec88f4 100644 --- a/assets/index.css +++ b/assets/index.css @@ -20,7 +20,7 @@ footer { margin-bottom: 5%; } -h2 > a::before { +h2>a::before { content: '> '; } @@ -41,9 +41,9 @@ a { } img { - max-width: 75%; - margin-left: auto; - margin-right: auto; + max-width: 75%; + margin-left: auto; + margin-right: auto; } marquee { @@ -75,6 +75,15 @@ pre { padding: 5px; } -:not(pre) > code { +:not(pre)>code { padding: 5px; +} + +iframe { + width: 100%; +} + +table>tbody>tr>td>a>img { + width: 70%; + height: auto; } \ No newline at end of file |