138 lines
2.5 KiB
CSS
138 lines
2.5 KiB
CSS
body{
|
|
background-image: url(img/background.jpg);
|
|
font-family: "Montserrat", sans-serif;
|
|
font-optical-sizing: auto;
|
|
text-align: justify;
|
|
line-height: 25px;
|
|
color: #161616;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h1{
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
font-family: "Knewave", system-ui;
|
|
color: #161616;
|
|
font-size: xx-large;
|
|
font-weight: 900;
|
|
padding: 0px;
|
|
margin: 5px;
|
|
}
|
|
|
|
|
|
.content {
|
|
margin-top: 2em;
|
|
align-self: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 1100px;
|
|
}
|
|
|
|
.separator{
|
|
width: 150px;
|
|
height: 125px;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-image: url(img/frog.png);
|
|
}
|
|
.separator:hover{
|
|
background-image: url(img/frog-hover.png);
|
|
}
|
|
.separator:active{
|
|
background-image: url(img/frog-cwak.png);
|
|
}
|
|
|
|
/* Menu */
|
|
|
|
fc-menu {
|
|
background-image: url(img/background-black-red.jpg);
|
|
margin-bottom: 1em;
|
|
-webkit-font-smoothing: antialiased;
|
|
height: 2.4em;
|
|
overflow: hidden;
|
|
-webkit-transition: height 0.5s;
|
|
-moz-transition: height 0.5s;
|
|
-ms-transition: height 0.5s;
|
|
transition: height 0.5s;
|
|
}
|
|
|
|
fc-menu .pure-menu-heading {
|
|
color: #DB2937;
|
|
font-weight: 900;
|
|
font-size: large;
|
|
}
|
|
|
|
fc-menu .pure-menu-link {
|
|
color: #DB2937;
|
|
}
|
|
|
|
fc-menu.open {
|
|
height: 14em;
|
|
}
|
|
|
|
fc-menu-toggle-button {
|
|
width: 34px;
|
|
height: 34px;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
display: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
fc-menu-toggle-button .bar {
|
|
background-color: #777;
|
|
display: block;
|
|
width: 20px;
|
|
height: 2px;
|
|
border-radius: 100px;
|
|
position: absolute;
|
|
top: 18px;
|
|
right: 7px;
|
|
-webkit-transition: all 0.5s;
|
|
-moz-transition: all 0.5s;
|
|
-ms-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
fc-menu-toggle-button .bar:first-child {
|
|
-webkit-transform: translateY(-6px);
|
|
-moz-transform: translateY(-6px);
|
|
-ms-transform: translateY(-6px);
|
|
transform: translateY(-6px);
|
|
}
|
|
|
|
.open fc-menu-toggle-button .bar {
|
|
-webkit-transform: rotate(45deg);
|
|
-moz-transform: rotate(45deg);
|
|
-ms-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.open fc-menu-toggle-button .bar:first-child {
|
|
-webkit-transform: rotate(-45deg);
|
|
-moz-transform: rotate(-45deg);
|
|
-ms-transform: rotate(-45deg);
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
.fc-right-menu {
|
|
text-align: right;
|
|
}
|
|
|
|
@media (max-width: 47.999em) {
|
|
|
|
.fc-right-menu {
|
|
text-align: left;
|
|
}
|
|
|
|
fc-menu-toggle-button {
|
|
display: block;
|
|
}
|
|
|
|
}
|