1
0
Fork 0

styling of cat svg in header

This commit is contained in:
emma 2025-01-02 17:24:31 -05:00
parent 61a0af5b1c
commit 00a970ffe2
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<header id="top"> <header id="top">
<img src="../site-resources/assets/header-cat.svg" height="32px" width="32px"> <img src="../site-resources/assets/header-cat.svg" width="80px" height="80px">
<span> <span>
<p>This cat rocks!</p> <p>This cat rocks!</p>
<p>A homepage for my fine feline friend, Baxter</p> <p>A homepage for my fine feline friend, Baxter</p>

View File

@ -121,12 +121,13 @@ header {
} }
header img { header img {
height: 72px; max-height: 100%;
width: auto; max-width: 100%;
object-fit: fill;
} }
header p { header p {
font-size: 1.25rem; font-size: 1.5rem;
font-weight: bold; font-weight: bold;
} }