Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 127 additions & 0 deletions assets/css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
.container body, html {
height:100%;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-content: space-around;
background-color: #FFFFFF;
}

.container {
padding: 30px 50px 30px 50px;
}

#logo {
color: #000000;
opacity: 0.87;
font-weight: 800;
font-size: 28px;
}

nav {
display: flex;
flex-direction: column;
align-items: center;
background-color: #FFFFFF;
}

nav a {
text-decoration: none;
opacity: 0.30;
color: #000000;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 13px;
letter-spacing: 1px;
}

nav ul {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}

nav ul li {
text-align: center;
width: 100%;
}

nav ul li a {
display: inline-block;
width: 100%;
text-decoration: none;
}

.icones {
display: flex;
flex-direction: row;
}

#search {
margin-right: 16px;
font-size: 18px;
}

#menu {
font-size: 18px;
}

.ativo {
border-bottom: 3px solid black;
color: #000000;
opacity: 0.87;
}

.video video {
width: 100%;
height: 100%;
}

.video {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}

.texto1 {
display: flex;
position: absolute;
flex-direction: column;
text-align: center;
}

#titulo {
font-family: 'Seaweed Script', cursive;
font-size: 93px;
color: #FFFFFF;
}

#subtitulo {
color: #757575;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 16px;
letter-spacing: 2px;
}

@media screen and (min-width: 768px) {

nav {
flex-direction: row;
}

nav ul {
flex-direction: row;
flex-wrap: wrap;
width: 100%;
justify-content: space-around;
align-items: flex-end;
margin-right: 16px;
margin-left: 35%
}
}
53 changes: 53 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Home</title>
<link rel="stylesheet" href="assets/css/index.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Seaweed+Script" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<body>
<div class="container">

<nav>
<a <href="#" id="logo">ZENIT</a>
<ul>
<a href="index.html" class="ativo"><li>HOME</li></a>
<a href=""><li>PAGES</li></a>
<a href=""><li>PORTFOLIO</li></a>
<a href=""><li>STOCK</li></a>
<a href=""><li>PROOFING</li></a>
<a href=""><li>BLOG</li></a>
<a href=""><li>SHOP</li></a>
<a href=""><li>ELEMENTS</li></a>
<li class="slider"></li>
</ul>
<div class="icones">
<span style="font-size: 16px; color: #000000; opacity: 0.87;">
<i id="search" class="fas fa-search"></i>
</span>
<span style="font-size: 16px; color: #000000; opacity: 0.87;">
<i id="menu" class="fas fa-bars"></i>
</span>
</div>
</nav>

<div class="video">
<video autoplay loop>
<source src="assets/hero.mp4" type="video/mp4">
</video>
<div class="texto1">
<label id="titulo">Anna Johnson</label>
<label id="subtitulo">PHOTOGRAPHY</label>
</div>
</div>

<footer id="rodape">
<div id="redesSociais"></div>
</footer>

</div>
</body>
</html>