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
Binary file added public/Videos/main-video.mp4
Binary file not shown.
Binary file added src/assets/images/Pizza.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/main-video.mp4
Binary file not shown.
1 change: 0 additions & 1 deletion src/components/Cadastro/Cadastro.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ function post(){

<form action="">
<h2> Cadastro </h2>
<p> Preencha os dados para continuar </p>
<div className={style.inputDiv}>
<label for='nome'> Nome </label>
<input type='text' name='nome' id='nome' value={nome} onChange={(e) => setNome(e.target.value)}/>
Expand Down
7 changes: 6 additions & 1 deletion src/components/Footer/Footer.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
.footer {
color: var(--amarelo);
max-width: 100vw;
height: 35vh;
height: 40vh;
margin-top: 5em;
padding: 25px 0;
display: block;
background-color: rgb(22, 21, 21);
}
Expand Down Expand Up @@ -51,6 +52,10 @@ font-size: 1.2em;
}

@media (max-width: 900px) {

.footer{
height: 30vh;
}
.item_list {
font-size: 11px;
}
Expand Down
3 changes: 3 additions & 0 deletions src/components/PasswordRecover/Password.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export default function Password () {

return (
<div>
<div className={style.formDiv}>
<NavBar />
<form>
<h1>Esqueceu a senha?</h1>
Expand Down Expand Up @@ -104,5 +105,7 @@ export default function Password () {
texto='Verificar e-mail'/>
</form>
</div>
<Footer />
</div>
)
}
12 changes: 10 additions & 2 deletions src/components/PasswordRecover/Pasword.module.css
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
@import "../../App.css";

.formDiv{
height: 65vh;
display: flex;
flex-direction: column;
}

form {
background-color: rgb(0, 0, 0, 0.7);
display: flex;
flex-direction: column;
align-items: center;
width: 20vw;
min-width: 350px;
height: 100%;
height:90%;
min-height: 300px;
border-radius: 10px;
border: 2px solid var(--cinzamedio);
padding: 1rem;
color: var(--cinza);
margin: 0 auto;
margin-top: 40px;
justify-content: space-evenly;

}

form h1{
Expand All @@ -29,7 +37,7 @@ form h1{
}

.inputDiv label{
margin-left: 15%;
padding-top: 10px;
}

.inputDiv input {
Expand Down
9 changes: 6 additions & 3 deletions src/components/Texto-principal/TextoPrincipal.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import pizza from '../../assets/images/Pizza.png'
import video from '../../assets/images/main-video.mp4'
import motoboy from '../../assets/images/motoboy.png'
import style from "./TextoPrincipal.module.css"
import Button from '../Button/Button'
Expand Down Expand Up @@ -41,9 +43,10 @@ export default function TextoPrincipal () {
</div>

<div className="style.videoDiv">
<div className={style.videoContainer} autoPlay="autoplay" loop='loop' muted="muted">
<img src="https://media1.giphy.com/media/4ayiIWaq2VULC/giphy.gif?cid=790b7611e1ef4c5d510821b2427ecea7ad3606bd27df4152&rid=giphy.gif&ct=g" className={style.pizzaFrame} frameBorder="0"></img>
</div>
<video className={style.videoContainer} autoPlay="autoplay" loop='loop' muted="muted">
<source type="video/mp4" autoPlay src={video}/>
Video não compatível no seu navegador
</video>
</div>
</div>
<div className={style.motoboy}>
Expand Down
1 change: 0 additions & 1 deletion src/components/Texto-principal/TextoPrincipal.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@


.videoDiv {
margin-right: 50px;
object-fit: cover;
max-height: fit-content;
}
Expand Down