Created
February 13, 2019 17:31
-
-
Save devmeireles/a07987fbb79728fe5d9e823b3ca497f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*{ | |
padding: 0; | |
margin: 0; | |
font-family: 'Lato', sans-serif; | |
} | |
img{ | |
height: auto; | |
width: 100%; | |
} | |
header { | |
background: url('../images/bg-header.jpg') no-repeat; | |
height: 100vh; | |
width: 100%; | |
background-size: 100%; | |
background-position: center; | |
} | |
nav{ | |
width: 100%; | |
height: 50px; | |
position: fixed | |
} | |
nav ul{ | |
list-style: none; | |
width: 100%; | |
right: 100px; | |
top: 20px; | |
position: relative; | |
} | |
nav ul li{ | |
float: right; | |
margin: 5px; | |
} | |
nav ul li a{ | |
padding: 20px; | |
text-decoration: none; | |
color: #FFF; | |
} | |
section{ | |
width: 99%; | |
margin: 0 auto; | |
padding: 25px 0px 25px 0px; | |
float: left; | |
} | |
.features .film{ | |
width: 49%; | |
float: left; | |
} | |
.features .film:first-child{ | |
margin-right: 2%; | |
} | |
.features .film h2{ | |
font-size: 25px; | |
} | |
.film-box .film h2{ | |
text-align: center; | |
padding: 10px; | |
} | |
.last-week{ | |
display: table; | |
} | |
.last-week div{ | |
width: 24%; | |
float: left; | |
margin-right: 1%; | |
display: table-cell; | |
} | |
.last-week div h2{ | |
font-size: 18px; | |
} | |
.last-week div p { | |
font-size: 15px; | |
padding: 5px 5px 0px 5px; | |
text-align: justify; | |
} | |
.description div{ | |
text-align: center; | |
} | |
.description div h1{ | |
font-size: 35px; | |
font-weight: bold; | |
} | |
.description div p{ | |
font-size: 19px; | |
padding: 50px; | |
} | |
footer{ | |
height: 200px; | |
float: left; | |
background: #000; | |
width: 100%; | |
} | |
footer p{ | |
color: #FFF; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment