more qol changes

This commit is contained in:
Rosia E Evans 2025-05-16 12:26:31 +01:00
parent c406cec6ad
commit 823a8e46d9
6 changed files with 24 additions and 7 deletions

View file

@ -12,7 +12,7 @@
<nav>
<a href="index.html">Home</a> |
<a href="ServicesAndPrices.html">Services And Prices</a> |
<a href="ServicesAndPrices.html">Services</a> |
<a href="Gallery.html">Gallery</a> |
<a href="Contact.html">Contact</a>
</nav>

View file

@ -13,12 +13,12 @@
<nav>
<a href="index.html">Home</a> |
<a href="ServicesAndPrices.html">Services And Prices</a> |
<a href="ServicesAndPrices.html">Services</a> |
<a href="Gallery.html">Gallery</a> |
<a href="Contact.html">Contact</a>
</nav>
<main class="white_backing">click a photo for a bigger picture</main>
<main class="white_backing" style="margin-bottom: 0;">click a photo for a bigger picture</main>
<main class="gallery">

View file

@ -11,7 +11,7 @@
<nav>
<a href="index.html">Home</a> |
<a href="ServicesAndPrices.html">Services And Prices</a> |
<a href="ServicesAndPrices.html">Services</a> |
<a href="Gallery.html">Gallery</a> |
<a href="Contact.html">Contact</a>
</nav>

View file

@ -9,7 +9,8 @@
#times{
text-align: center;
grid-area: open
grid-area: open;
}
#head{
@ -26,5 +27,15 @@
}
@media screen and (max-width:1000px){
#home_page_content{
display: grid;
gap: 7px;
grid-template-areas:
"head"
"qual"
"open"
"book";
grid-template-columns: 1fr;
}
}

View file

@ -12,7 +12,7 @@
<nav>
<a href="index.html">Home</a> |
<a href="ServicesAndPrices.html">Services And Prices</a> |
<a href="ServicesAndPrices.html">Services</a> |
<a href="Gallery.html">Gallery</a> |
<a href="Contact.html">Contact</a>
</nav>

View file

@ -20,6 +20,7 @@ main{
width: 60vw;
margin: auto;
margin-top: 15px;
margin-bottom: 20vh;
padding: 5px;
text-align: center;
}
@ -70,6 +71,7 @@ table{
.white_backing{
background-color: var(--backing);
padding-bottom: 20px;
}
.hover_rotate{
@ -116,4 +118,8 @@ table{
font-size: 2.6rem;
border-bottom: solid var(--text) 2px;
}
ul{
margin: 10px;
}
}