-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 17 e 18 com uma parte do carrosel, nao finalizado
- Loading branch information
Showing
4 changed files
with
110 additions
and
2 deletions.
There are no files selected for viewing
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,76 @@ | ||
@font-face { | ||
font-family:'Chillax'; | ||
src: url('Chillax-Regular.otf'); | ||
} | ||
|
||
@font-face { | ||
font-family:'Allegin'; | ||
src: url('Allegin.otf'); | ||
} | ||
|
||
.container{ | ||
align-items: center; | ||
margin: 0px; | ||
padding: 0px; | ||
font-family: 'Chillax'; | ||
} | ||
|
||
.home{ | ||
background-image: url("Cabeçalho.png"); | ||
background-size: cover; | ||
background-position: center; | ||
height: 100vh; | ||
} | ||
|
||
.projeto{ | ||
background-color: #20181B; | ||
padding: 125px; | ||
padding-left: 227px; | ||
padding-right: 227px; | ||
} | ||
|
||
.projetoTitle{ | ||
color:white; | ||
text-align: center; | ||
font-size: 50px; | ||
font-weight: 200; | ||
font-family: 'Chillax'; | ||
} | ||
|
||
.projetoTitle span{ | ||
font-family: 'Allegin'; | ||
} | ||
|
||
.img-carimbo{ | ||
padding-top: 125px; | ||
width: 1000px; | ||
height: 585px; | ||
} | ||
|
||
.slider{ | ||
background-color: #20181B; | ||
padding: 125px; | ||
padding-left: 227px; | ||
padding-right: 227px; | ||
} | ||
|
||
.depoimentosTitle{ | ||
text-align: left; | ||
color:white; | ||
font-size: 50px; | ||
font-family: 'Allegin'; | ||
font-weight: 200; | ||
} | ||
|
||
.depoimentosText{ | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
padding-top: 75px; | ||
padding-bottom: 75px; | ||
border: solid; | ||
border-width: 1px; | ||
border-color: white; | ||
text-align: center; | ||
font-weight: 100; | ||
color: white; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,37 @@ | ||
function Portfolio(){ | ||
return <h1>Portfólio</h1> | ||
function Portfolio() { | ||
return ( | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="../layout/Portfolio.css" /> | ||
<link rel="stylesheet" href="owlCarousel/dist/assets/owl.carousel.min.css" /> | ||
<link rel="stylesheet" href="owlCarousel/dist/assets/owl.theme.default.min.css" /> | ||
</head> | ||
<body> | ||
<script src=""></script> | ||
<script src="owlCarousel/dist/owl.carousel.min.js"></script> | ||
<main class="container"> | ||
<div class="home"> | ||
</div> | ||
<div class="projeto"> | ||
<h1 class="projetoTitle"> | ||
Promover transformação social através <br>da <span>força</span> das raízes brasileiras, | ||
realçando <br>sua <span>energia moderna</span> e <span>vibrante</span>. | ||
<img class="img-carimbo" src="../components/img/CarimboPreto.png"> | ||
</h1> | ||
</div> | ||
<div class="slider"> | ||
<h2 class="depoimentosTitle">O QUE NOSSO CLIENTES TEM A DIZER</h2> | ||
<h2 class="depoimentosText"> | ||
“Trabalhar com a faísca foi uma excelente experiência, o resultado superou | ||
toda e qualquer expectativa. Nos impactou de tal forma que buscamos estabelecer | ||
uma parceria e recomendamos o trabalho sempre que possível” | ||
<br><b>Equipe IECBiot</b> | ||
</h2> | ||
</div> | ||
</main> | ||
</body> | ||
</html> | ||
) | ||
} | ||
|
||
export default Portfolio |