styling of about and behavior pages
This commit is contained in:
parent
a80691d143
commit
6b07726912
|
@ -11,8 +11,7 @@
|
|||
<?php include "./includes/nav.php" ?>
|
||||
<main>
|
||||
<section class="about-section">
|
||||
<h2>About this website and why I made it.</h2>
|
||||
<div class="about-section-text">
|
||||
<h1>About this website and why I made it.</h1>
|
||||
<p>
|
||||
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
|
||||
|
@ -36,7 +35,6 @@
|
|||
<p>
|
||||
Take care intenet stranger, I hope you make something great!
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
|
|
|
@ -11,8 +11,7 @@
|
|||
<?php include "./includes/nav.php" ?>
|
||||
<main>
|
||||
<section class="behavior-section">
|
||||
<h2>Things I've learned about cats from behaviors displayed by Baxter</h2>
|
||||
<div class="behavior-section-text">
|
||||
<h1>Things I've learned about cats from behaviors displayed by Baxter</h1>
|
||||
<p>
|
||||
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
|
||||
|
@ -56,7 +55,6 @@
|
|||
|
||||
<p>That's all for now, I do hope to add more soon!</p>
|
||||
<a href="#top">Top of page</a>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
|
|
|
@ -26,6 +26,7 @@ body {
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
color: var(--text-color);
|
||||
font-family: Arial, Verdana, Tahoma, Georgia, monospace;
|
||||
}
|
||||
|
||||
main {
|
||||
|
@ -141,6 +142,10 @@ main {
|
|||
padding: 1rem;
|
||||
}
|
||||
|
||||
.behavior-section h1, .about-section h1, .behavior-section h3, .behavior-section p, .about-section p {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue