Upload files to "/"
This commit is contained in:
parent
ab472706b2
commit
33b7e44538
4 changed files with 327 additions and 0 deletions
94
ServicesAndPrices.html
Normal file
94
ServicesAndPrices.html
Normal file
|
@ -0,0 +1,94 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="ServicesAndPrices.html">Services And Prices</a>
|
||||
<a href="Gallery.html">Gallery</a>
|
||||
<a href="Contact.html">Contact</a>
|
||||
</nav>
|
||||
|
||||
<main class="white_backing">
|
||||
<h1>Services And Prices</h1>
|
||||
Pricing varies for size, breed, coat type and behaviour.
|
||||
<br>
|
||||
Payment for the appointment is due at pickup of the dog after the appointment has taken place.
|
||||
<br><br>
|
||||
I do not provide ear plucking or teeth cleaning
|
||||
<br>
|
||||
I don’t take extra large dogs
|
||||
<br>
|
||||
Bad matting £15
|
||||
<br>
|
||||
Bad behavior £15
|
||||
<br>
|
||||
Cancellation or missed appointment £20
|
||||
<br>
|
||||
Fleas on your dog £20
|
||||
<br>
|
||||
|
||||
<h2>Services</h2>
|
||||
|
||||
<h3>Grooming</h3>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Toy</th>
|
||||
<th>Small</th>
|
||||
<th>Medium</th>
|
||||
<th>Large</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Nails Only</td>
|
||||
<td>£10</td>
|
||||
<td>£20</td>
|
||||
<td>£20</td>
|
||||
<td>£30</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hand Strip</td>
|
||||
<td>£50</td>
|
||||
<td>£60</td>
|
||||
<td>£70</td>
|
||||
<td>£80</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Deshed</td>
|
||||
<td>£20</td>
|
||||
<td>£30</td>
|
||||
<td>£40</td>
|
||||
<td>£50</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bath And Blow Dry</td>
|
||||
<td>£20</td>
|
||||
<td>£20</td>
|
||||
<td>£30</td>
|
||||
<td>£40</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Puppy Intro</td>
|
||||
<td>£35</td>
|
||||
<td>£35</td>
|
||||
<td>£45</td>
|
||||
<td>£45</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h3>Additional Services</h3>
|
||||
<ul style="text-align: left;"">
|
||||
<li>Dog walking: £10 an hr</li>
|
||||
<li>Hair Dyeing: cost of the groom + cost of the hairdye</li>
|
||||
<li>Full Groom: Price varies by breed and size, contact for a quote</li>
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
233
style.css
Normal file
233
style.css
Normal file
|
@ -0,0 +1,233 @@
|
|||
root{
|
||||
--text: #729b78;
|
||||
--backing: white;
|
||||
}
|
||||
|
||||
body{
|
||||
background-image: url("wallpaper.png");
|
||||
background-size: 250px;
|
||||
color: #729b78;
|
||||
}
|
||||
|
||||
header, article, section{
|
||||
background-color: white;
|
||||
padding: 10px;
|
||||
border-radius: 0 0 0px 0px;
|
||||
}
|
||||
|
||||
main{
|
||||
border-radius: 0 0 0px 0px;
|
||||
width: 60vw;
|
||||
margin: auto;
|
||||
margin-top: 15px;
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table{
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
|
||||
.white_backing{
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.hover_rotate{
|
||||
transition: transform 0.25s;
|
||||
}
|
||||
.hover_rotate:hover{
|
||||
transform: rotate(5deg);
|
||||
}
|
||||
|
||||
nav{
|
||||
display:flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
background-color: white;
|
||||
color: #729b78;
|
||||
font-size: 1.5rem;
|
||||
gap: 20px;
|
||||
|
||||
padding: 10px;
|
||||
margin-top: 20vh;
|
||||
}
|
||||
|
||||
nav a{
|
||||
font-size: 1.5rem;
|
||||
color: #729b78;
|
||||
text-decoration: none;
|
||||
border-bottom: solid #729b78 0px;
|
||||
transition: border-bottom 0.1s,font-size 0.7s;
|
||||
}
|
||||
nav a:hover{
|
||||
font-size: 1.6rem;
|
||||
border-bottom: solid #729b78 2px;
|
||||
}
|
||||
nav a:visited{
|
||||
color: #729b78;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a{
|
||||
color: #729b78;
|
||||
transition: color 0.5s;
|
||||
}
|
||||
a:visited{
|
||||
color: #729b78;
|
||||
}
|
||||
a:hover{
|
||||
color: black;
|
||||
}
|
||||
|
||||
.columns{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 10px;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.rows{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
align-content: stretch;
|
||||
}
|
||||
|
||||
#contact{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.socials{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
padding: 0 10% 0 10%;
|
||||
}
|
||||
|
||||
.socials img{
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
main .socials{
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.gallery{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
.gallery figure{
|
||||
width: 200px;
|
||||
height: 250px;
|
||||
background-color: white;
|
||||
|
||||
transition: transform 0.5s;
|
||||
}
|
||||
|
||||
.gallery figure:hover:not(.maximised){
|
||||
transform: rotate(-5deg);
|
||||
}
|
||||
|
||||
.gallery figure img{
|
||||
width: 90%;
|
||||
height: 75%;
|
||||
object-fit: fill;
|
||||
margin: 5%;
|
||||
}
|
||||
|
||||
.gallery figcaption{
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
||||
.maximised{
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
/* left: 0; */
|
||||
/* top: 0; */
|
||||
|
||||
z-index: 10;
|
||||
|
||||
height: 90vh !important;
|
||||
width: 80vh !important;
|
||||
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 3rem;
|
||||
margin: 0;
|
||||
}
|
||||
.maximised:before{
|
||||
background-color: white;
|
||||
content: "click the photo again to close it";
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.font_scaler{
|
||||
position: fixed;
|
||||
}
|
||||
.font_scaler button{
|
||||
background: none;
|
||||
background-color: white;
|
||||
border: none;
|
||||
margin-left: 10px;
|
||||
padding: 5px;
|
||||
transition: background-color 0.5s;
|
||||
}
|
||||
.font_scaler img{
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
.font_scaler button::hover, .font_scaler img::hover{
|
||||
background-color: grey;
|
||||
}
|
||||
|
||||
@media screen and (max-width:1000px){
|
||||
|
||||
|
||||
.maximised{
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
/* left: 0; */
|
||||
/* top: 0; */
|
||||
|
||||
|
||||
z-index: 10;
|
||||
|
||||
height: 90vw !important;
|
||||
width: 80vw !important;
|
||||
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 3rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
main{
|
||||
width: 90vw;
|
||||
font-size:2rem;
|
||||
}
|
||||
|
||||
|
||||
nav a{
|
||||
font-size: 2.5rem;
|
||||
color: #729b78;
|
||||
text-decoration: none;
|
||||
border-bottom: solid #729b78 0px;
|
||||
transition: border-bottom 0.1s,font-size 0.7s;
|
||||
}
|
||||
nav a:hover{
|
||||
font-size: 2.6rem;
|
||||
border-bottom: solid #729b78 2px;
|
||||
}
|
||||
|
||||
.gallery figure{
|
||||
width: 350px;
|
||||
height: 400px;
|
||||
}
|
||||
}
|
BIN
wallpaper.kra
Normal file
BIN
wallpaper.kra
Normal file
Binary file not shown.
BIN
wallpaper.png
Normal file
BIN
wallpaper.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
Loading…
Add table
Reference in a new issue