Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
*{box-sizing: border-box;}
body{
background-color: white;
margin: 0;
font-family: Comic Sans MS;
overflow: scroll;
}
#nav {
overflow: hidden;
background-color: yellow;
padding: 80px 15px;
transition: 0.5s;
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 5;
border-bottom-left-radius: 50px;
border-bottom-right-radius: 50px;
}
#nav a {
float: left;
color: black;
text-align: center;
padding: 35px 50px;
text-decoration: none;
font-size: 20px;
line-height: 25px;
border-radius: 10px;
cursor: pointer;
}
#nav a:hover {
background-color: rgb(255, 242, 0);
color: black;
cursor: pointer;
}
#navRight {
float: right;
}
.parallx1 {
position: relative;
opacity: 0.65;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url("parallax1.jpg");
width: 100%;
}
.caption {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
color: #000;
}
.home {
margin-top: 90px;
padding: 125px 25px 100px 10px;
}
.slides {display: none}
img {vertical-align: middle;}
.slideshow {
max-width: 100%;
position: relative;
margin: auto;
}
.previous, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.previous:hover, .next:hover {
background-color: rgba(234, 234, 234, 0.4);
}
.fade {
animation-name: fade;
animation-duration: 1.0s;
}
@keyframes fade {
from {opacity: .5}
to {opacity: 1}
}
.button {
display: inline-block;
padding: 2% 3%;
font-size: 30px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: black;
background-color: #FFCAAF;
border: none;
border-radius: 10px;
}
.button:hover {
background-color: #ffafaf
}
.button:active {
background-color: #afe3ff;
transform: translateY(4px);
}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
font-family: Comic Sans MS;
}
input[type=submit] {
background-color: #afe3ff;
color: black;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #8dd2f7;
}
.container {
border-radius: 10px;
background-color: #FFCAAF;
padding: 20px;
width: 100%;
}
@media screen and (max-width: 580px) {
#nav {
padding: 20px 10px !important;
}
#nav a {
float: none;
display: block;
text-align: left;
padding: 5px 25px;
font-size: 10px;
}
#navRight {
float: none;
}
}
@media only screen and (max-device-width: 1024px) {
.parallx1 {
background-attachment: scroll;
}
}