-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ba4cbdd
Showing
44 changed files
with
325 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Jean Andreotti Borges da Silva | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Proj-Treinamento-Full | ||
Projeto de conclusão dos estudos HTML CSS |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,207 @@ | ||
*{ | ||
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap'); | ||
margin: 0px; | ||
padding: 0px; | ||
box-sizing: border-box; | ||
font-family: 'Montserrat', sans-serif, Arial, Helvetica, sans-serif; | ||
font-size: 13px; | ||
} | ||
body{ | ||
overflow-x: hidden; /* todo conteudo que passar da pagina em x sera ignorado */ | ||
} | ||
header{ | ||
height: 100px; | ||
background: black; | ||
color: white; | ||
|
||
} | ||
.header{ | ||
max-width: 1140px; | ||
height: 100px; | ||
margin: auto; | ||
display: flex; | ||
align-items: center; | ||
} | ||
.logo{ | ||
width: 100px; | ||
} | ||
.menu{ | ||
flex: 1; | ||
display: flex; | ||
justify-content: flex-end; | ||
} | ||
.logoimg{ | ||
width: 80px; | ||
height: 80px; | ||
background-color: #B28756; | ||
} | ||
.menu ul{ | ||
display: flex; | ||
} | ||
.menu ul , .menu li{ | ||
list-style: none; | ||
} | ||
.menu li a{ | ||
color: white; | ||
text-transform: uppercase; | ||
font-weight: 600; | ||
text-decoration: none; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
height: 100px; | ||
display: flex; | ||
align-items: center; | ||
border-bottom: 7px solid black; | ||
border-top: 7px solid black; | ||
} | ||
|
||
.menu .active a , .menu li a:hover{ | ||
border-bottom: 7px solid #B28756; | ||
border-top: 7px solid #B28756; | ||
color: #CCC; | ||
} | ||
.button{ | ||
background-color: #B28756; | ||
color: white; | ||
font-size: 13px; | ||
text-transform: uppercase; | ||
text-decoration: none; | ||
padding: 10px 30px; | ||
font-weight: 600; | ||
margin-top: 20px; | ||
border-radius: 20px; | ||
|
||
} | ||
.banner { | ||
height: calc(100vh - 100px); /* 100vh da altura intera que aparecera na tela menos 100px do header*/ | ||
background: rgb(116, 100, 100); | ||
background-image: url('../images/bg.jpg'); | ||
background-size: cover; | ||
background-position: bottom; | ||
overflow: hidden; | ||
} | ||
.banner .sliders{ | ||
width: 1000vw;/* para as 3 paginas de sliders. Sera passada comente com JV*/ | ||
height: 100%; | ||
|
||
} | ||
.banner .slide{ | ||
width: 100vw; /* para cada pagina do slider*/ | ||
height: 100%; | ||
display: inline-block; | ||
background-color: rgba(0, 0, 0, 0.5); | ||
margin: auto; | ||
|
||
} | ||
.slidearea{ | ||
display: flex; | ||
flex-direction: column; | ||
height: 100%; | ||
justify-content: center; | ||
align-items: center; | ||
color: white; | ||
|
||
} | ||
.banner h1{ | ||
text-transform: uppercase; | ||
font-weight: bold; | ||
font-size: 50px; | ||
} | ||
.banner h1 span{ | ||
color: #B28756; | ||
font-size: 50px; | ||
} | ||
.banner h2{ | ||
text-transform: uppercase; | ||
margin-top: 20px; | ||
font-size: 20px; | ||
} | ||
.banner .sliders-pointers{ | ||
width: 100vw; | ||
height: 20px; | ||
position: absolute; | ||
margin-top: -50px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
.banner .pointer{ | ||
width: 18px; | ||
height: 18px; | ||
border:2px solid #B28756; | ||
border-radius: 9px; | ||
margin-left: 5px; | ||
margin-right: 5px; | ||
cursor: pointer; | ||
} | ||
.banner .pointer.active { | ||
background-color: #B28756; | ||
} | ||
.default{ | ||
width: 100vw; | ||
padding-top: 50px; | ||
padding-bottom: 50px; | ||
} | ||
.default .section-title , | ||
.default .section-desc{ | ||
text-align: center; | ||
text-transform: uppercase; | ||
font-weight: 600; | ||
} | ||
.default .section-title{ | ||
font-size: 20px; | ||
font-weight: 600; | ||
} | ||
.default .section-desc{ | ||
font-size: 13px; | ||
color: #CCC; | ||
margin-top: 10px; | ||
margin-bottom: 40px; | ||
|
||
} | ||
.default .section-body{ | ||
max-width: 1140px; | ||
margin: auto; | ||
} | ||
.default.light { | ||
background-color: #f7f7f7; | ||
} | ||
.default.light .section-title , | ||
.default.light .section-body{ | ||
color: black; | ||
} | ||
.default.dark { | ||
background-color: black; | ||
} | ||
.default.dark .section-title , | ||
.default.dark .section-body{ | ||
color: #FFF; | ||
} | ||
|
||
/* CSS DE ÁRES ESPECÍFICAS */ | ||
|
||
.section-aboutus{ | ||
display: flex; | ||
justify-content: center; | ||
margin-left: 2%; | ||
margin-right: 5%; | ||
} | ||
.section-aboutus--left{ | ||
flex: 1.5; | ||
} | ||
.section-aboutus--left p{ | ||
font-size: 14px; | ||
line-height: 20px; | ||
width: 90%; | ||
text-align: justify; | ||
|
||
} | ||
.section-aboutus--right{ | ||
flex: 1; | ||
text-align: center; | ||
} | ||
.section-aboutus--right img{ | ||
width: 100%; | ||
box-shadow: 0px 5px 10px #333; | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>AWAX</title> | ||
<link rel="stylesheet" type="text/css" href="assets/css/style.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="header"> | ||
<div class="logo"> | ||
<div class="logoimg"> | ||
... | ||
</div> | ||
</div> | ||
<div class="menu"> | ||
<nav> | ||
<ul> | ||
<li class="active"><a href="">Home</a></li> | ||
<li><a href="">About Us</a></li> | ||
<li><a href="">Services</a></li> | ||
<li><a href="">Our Projects</a></li> | ||
<li><a href="">Our Team</a></li> | ||
<li><a href="">Happy Clients</a></li> | ||
<li><a href="">Price</a></li> | ||
<li><a href="">Some Facts</a></li> | ||
<li><a href="">Contact Us</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</div> | ||
</header> | ||
<main> | ||
<!-- --------------banner fundo------------------------- --> | ||
<section class="banner"> | ||
<div class="sliders"> <!--style="margin-left:-100vw;" --> | ||
<div class="slide"> | ||
<div class="slidearea"> | ||
<h1>Design is about<br><span>Communication</span></h1> | ||
<h2>Call Us: +00 0 1234 5678</h2> | ||
<a href="" class="button">Get in touch!</a> | ||
</div> | ||
</div> | ||
<!-- --------------sliders------------------------- --> | ||
<div class="slide"> | ||
<div class="slidearea"> | ||
<h1>Design is about<br><span>TESTE</span></h1> | ||
<h2>Call Us: +00 0 1234 5678</h2> | ||
<a href="">Get in touch!</a> | ||
</div> | ||
</div> | ||
<div class="slide"> | ||
<div class="slidearea"> | ||
<h1>Design is about<br><span>ALGO</span></h1> | ||
<h2>Call Us: +00 0 1234 5678</h2> | ||
<a href="" class="button">Get in touch!</a> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- --------------pointer------------------------- --> | ||
<div class="sliders-pointers"> | ||
<div class="pointer active"></div> | ||
<div class="pointer"></div> | ||
<div class="pointer"></div> | ||
</div> | ||
<!-- --------------pointer------------------------- --> | ||
</section> | ||
<!-- -----------fim banner 1/ inicio DEFAULT LIGHT-------------------- --> | ||
<section class="default light"> | ||
<div class="section-title">About us</div> | ||
<div class="section-desc">Who we are?</div> | ||
<div class="section-body"> | ||
<div class="section-aboutus"> | ||
<div class="section-aboutus--left"> | ||
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Autem eaque dolore ducimus, animi earum excepturi deserunt atque officiis voluptates accusamus tempora nisi sit dolores. Nisi tempora laborum saepe nobis rem?Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem, ipsum dolor sit amet consectetur adipisicing elit. Repudiandae minus facere temporibus ad neque assumenda reiciendis quasi alias blanditiis obcaecati ratione porro, illum corrupti dolorum eaque velit vero soluta deleniti. </p><br><br> | ||
<a href="" class="button">Learn More</a> | ||
</div> | ||
<div class="section-aboutus--right"> | ||
<img src="./media/foto9.jpg"> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<!-------------fim DEFAULT LIGHT / inicio DEFAULT DARK ------------------> | ||
<section class="default dark"> | ||
<div class="section-title">exemplo</div> | ||
<div class="section-desc">descricao</div> | ||
<div class="section-body">legal</div> | ||
</section> | ||
</main> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.