Skip to content

Instantly share code, notes, and snippets.

@rogeercruz
Created August 24, 2017 00:37
Show Gist options
  • Save rogeercruz/8e146205dbcc96209df0fb73ad1bb440 to your computer and use it in GitHub Desktop.
Save rogeercruz/8e146205dbcc96209df0fb73ad1bb440 to your computer and use it in GitHub Desktop.
exemplo de aula
body, ul {
margin: 0 0;
}
.wrapper {
display: block;
background-color: pink;
height: 100vh;
height: 100vh;
}
.nav {
background-color: tomato;
width: 100%;
height: 64px;
display: block;
box-shadow: 0 0 1px rgba(0,0,0,0.14), 0 4px 14px rgba(0,0,0,0.22);
}
.nav ul {
width: 300px;
height: 100%;
float: right;
z-index: 1;
}
.nav ul li {
float: left;
list-style: none;
height: auto;
padding-top: 22px;
margin-left: 30px;
font-size: 17px;
}
.nav ul li a {
text-decoration: none;
color: #fff;
font-family: 'Baloo Bhaijaan', cursive
}
.nav ul li a:hover {
color: #000;;
}
.banner, .content {
display: -webkit-flex;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.banner img {
width: 80%;
height: auto;
}
.content p {
margin-left: 10%;
margin-right: 10%;
font-family: 'Open Sans', sans-serif;
margin-bottom: 10%;
}
.contact-us {
text-decoration: none;
width: 200px;
height: 50px;
background-color: tomato;
border-radius: 17px;
text-align: center;
}
.contact-us:hover {
opacity: 0.7;
}
.contact-us a {
padding-top: 15px;
display: block;
width: 100%;
height: 100%;
text-decoration: none;
color: #fff;
font-family: 'Baloo Bhaijaan', cursive
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment