Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 6 #63

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
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
Empty file removed README.md
Empty file.
53 changes: 53 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<html lang="pt-BR">

<head>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<title>Guiminamflix</title>
</head>

<body>
<header>GUIMINAMFLIX</header>

<section class="chamada">
<div class="chamada-texto">
<h1>ATRAVÉS DO ARANHAVERSO</h1>
<p>#homem-aranha</p>
</div>

<div>
<iframe width="560" height="315" src="https://www.youtube.com/embed/gt_fAE1Eg2Q?si=EEv-tsY_b1B2OwKE"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</section>

<section class="categoria">
<h2>Filmes e séries</h2>
<div class="categoria-videos">
<a href="https://www.youtube.com/watch?v=cs15QqG6Gjc">
<img src="https://img.youtube.com/vi/cs15QqG6Gjc/maxresdefault.jpg" />
</a>
<a href="https://www.youtube.com/watch?v=nCmIwcycUJ8">
<img src="https://img.youtube.com/vi/nCmIwcycUJ8/maxresdefault.jpg" />
</a>
<a href="https://www.youtube.com/watch?v=FvRmEapoHRc">
<img src="https://img.youtube.com/vi/FvRmEapoHRc/maxresdefault.jpg" />
</a>
<a href="https://www.youtube.com/watch?v=Ipkw_hWW-Hw">
<img src="https://img.youtube.com/vi/Ipkw_hWW-Hw/maxresdefault.jpg" />
</a>
<a href="https://www.youtube.com/watch?v=d4DzMNGoyis">
<img src="https://img.youtube.com/vi/d4DzMNGoyis/maxresdefault.jpg" />
</a>
</div>
</section>

</body>

</html>
60 changes: 60 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
body {
color: white;
background: black;
margin: 0px;
font-family: "Chakra Petch", sans-serif;
margin-bottom: 100px;
}

header {
border-bottom: solid 2px rgb(42, 122, 228);
padding: 20px;
font-size: 32px;
color: rgb(42, 122, 228);
}

.chamada {
background: rgb(184, 156, 213);
padding-bottom: 80px;
padding-top: 80px;
display: flex;
justify-content: center;
}

.chamada-texto {
margin-right: 5%;
}

h1 {
font-size: 40px;
}

p {
font-size: 20px;
}

.categoria-videos {
display: flex;
overflow-x: auto;
gap: 10px;
}

.categoria {
padding-left: 20px;
padding-right: 20px;
margin-top: 50px;
}

.categoria-videos img {
opacity: 0.5;
height: 200px;
}

.categoria-videos img:hover {
opacity: 1.0;
border: 3px solid green;
}

.categoria h2 {
color: rgb(42, 122, 228);
}