1
0
Fork 0

styling of about and behavior pages

This commit is contained in:
emma 2025-01-03 13:42:13 -05:00
parent a80691d143
commit 6b07726912
3 changed files with 7 additions and 6 deletions

View File

@ -11,8 +11,7 @@
<?php include "./includes/nav.php" ?> <?php include "./includes/nav.php" ?>
<main> <main>
<section class="about-section"> <section class="about-section">
<h2>About this website and why I made it.</h2> <h1>About this website and why I made it.</h1>
<div class="about-section-text">
<p> <p>
When I was a kid there was s service called Freewebs where you could make When I was a kid there was s service called Freewebs where you could make
your own website about whatever really. I used it for a gaming group I was a part of your own website about whatever really. I used it for a gaming group I was a part of
@ -36,7 +35,6 @@
<p> <p>
Take care intenet stranger, I hope you make something great! Take care intenet stranger, I hope you make something great!
</p> </p>
</div>
</section> </section>
</main> </main>
</body> </body>

View File

@ -11,8 +11,7 @@
<?php include "./includes/nav.php" ?> <?php include "./includes/nav.php" ?>
<main> <main>
<section class="behavior-section"> <section class="behavior-section">
<h2>Things I've learned about cats from behaviors displayed by Baxter</h2> <h1>Things I've learned about cats from behaviors displayed by Baxter</h1>
<div class="behavior-section-text">
<p> <p>
Before reading, I want to stress that I am not an authority on cats, and that I think we Before reading, I want to stress that I am not an authority on cats, and that I think we
can all agree that our cats are very unique in personality and behavior. However, I wanted to post these as can all agree that our cats are very unique in personality and behavior. However, I wanted to post these as
@ -56,7 +55,6 @@
<p>That's all for now, I do hope to add more soon!</p> <p>That's all for now, I do hope to add more soon!</p>
<a href="#top">Top of page</a> <a href="#top">Top of page</a>
</div>
</section> </section>
</main> </main>
</body> </body>

View File

@ -26,6 +26,7 @@ body {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
color: var(--text-color); color: var(--text-color);
font-family: Arial, Verdana, Tahoma, Georgia, monospace;
} }
main { main {
@ -141,6 +142,10 @@ main {
padding: 1rem; padding: 1rem;
} }
.behavior-section h1, .about-section h1, .behavior-section h3, .behavior-section p, .about-section p {
padding: 1rem;
}
a { a {
text-decoration: none; text-decoration: none;
} }