34 lines
475 B
CSS
Raw Normal View History

2016-02-21 22:09:59 +01:00
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
.parallax-container {
2016-02-22 14:11:36 +01:00
height: 800px;
2016-02-21 22:09:59 +01:00
min-height: 250px;
margin-bottom: 20px;
2016-02-22 14:11:36 +01:00
background-color: rgba(0, 0, 0, .4);
2016-02-21 22:09:59 +01:00
}
.parallax-container h1 {
font-weight: 600;
font-size: 5.5vw;
text-transform: uppercase;
}
.parallax-container h2 {
font-weight: normal;
font-style: italic;
font-size: 2.2vw;
}
.parallax-tittle {
text-align: center;
width: 100%;
}