34 lines
695 B
CSS
34 lines
695 B
CSS
.cover {
|
|
color: #55aadd;
|
|
text-shadow: -1px 1px 0 #000000, 1px 1px 0 #000000, 1px -1px 0 #000000, -1px -1px 0 #000000;
|
|
text-align: center;
|
|
width: 100%;
|
|
padding: 25% 0px;
|
|
background-image: url("../img/background.png");
|
|
background-attachment: fixed;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
z-index: 10;
|
|
}
|
|
|
|
.cover-tagline {
|
|
font-family: 'Pacifico', cursive;
|
|
}
|
|
|
|
.fcenter {
|
|
align-self: center;
|
|
}
|
|
|
|
@media screen and (max-width: 850px) {
|
|
.cover-tagline {
|
|
margin: 25% 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.cover-tagline {
|
|
margin-top: 85%;
|
|
margin-bottom: 40%;
|
|
}
|
|
} |