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

início do projeto04 #1

Open
wants to merge 1 commit 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
41 changes: 41 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
:root {
--primary-color: #cf0f0f;
--primary-color-contrast: #ffffff;
--field-background-color: #000;
}

.light-theme {
--page-background: linear-gradient(
180deg,
#ffffff 0%,
#ffffff 65%,
rgba(255, 255, 255, 0.75) 100%
);
--header-background-color: #e3e3e3;
--highlight-color: #000000;
--featured-font-family: "Archivo", sans-serif;
--character-top-image-src: url("../images/characters/kids-on-the-bike.svg");
--character-top-image-color: #ffffff;
--character-bottom-image-src: url("../images/characters/inverted-world-monster.svg");
--character-bottom-image-color: #e5e5e5;
--background-lamp-image: url("../images/backgrounds/lamps.png");
--footer-background-color: #b5bbbf;
}

.dark-theme {
--page-background: linear-gradient(
180deg,
#050000 0%,
#130404 65%,
rgba(19, 1, 1, 0.75) 100%
);
--header-background-color: #220f0f;
--highlight-color: #ffffff;
--featured-font-family: "Rubik Glitch", sans-serif;
--character-bottom-image-src: url("../images/characters/kids-on-the-bike.svg");
--character-bottom-image-color: rgba(255, 255, 255, 0.1);
--character-top-image-src: url("../images/characters/inverted-world-monster.svg");
--character-top-image-color: #000;
--background-lamp-image: url("../images/backgrounds/lamps-inverted.png");
--footer-background-color: #000;
}
140 changes: 140 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mundo Invertido | Semana Front-end</title>

<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body class="light-theme" aria-label="O site está utilizando o tema light" role="body">
<header aria-label="Cabeçalho da página.">
<audio id="music" autoplay>
<source src="assets/musics/normal-world.mpeg" aria-details="Audio do site" />
</audio>
<div class="header-content">
<img class="invert-element" src="assets/images/banner/logo.svg" alt="Imagem principal Mundo Invertido. Semana Frontend DIO." />
<p class="invert-element" role="text">
Uma jornada para quem não tem medo do desconhecido. O caminho para o
Mundo invertido é incerto, repleto de obstáculos e perigos. Porém, a
recompensa é grande: salvar Hawkings e o mundo todo das garras de
Vecna. Você está preparado? Então clique no botão abaixo para entrar
no Mundo Invertido!
</p>
<button id="switch-theme-button" onclick="switchTheme()">Inverter Mundos</button>
</div>

<div id="top-characters" class="world-characters"></div>
</header>

<main>
<div id="bottom-characters" class="world-characters"></div>

<section id="section-inverted-world" class="container">
<div class="section-texts">
<h1>O Mundo Invertido</h1>
<p role="text">
O Mundo Invertido parece uma cópia do nosso mundo, mas com criaturas
horrendas, tempestades assustadoras, muita escuridão e entidades
malignas. Um reino controlado por Vecna, que tem planos de trazer
tudo isso ao nosso mundo.
</p>
</div>

<img
class="invert-element"
src="assets/images/content/inverted-world.png"
alt="Image ilustrativa do Mundo Invertido"
/>
</section>

<section id="section-stranger-things-trailer" class="container">
<div class="video-frame" aria-hidden="true">
<iframe
width="460"
height="215"
src="https://www.youtube.com/embed/SJ9EFhQ3ANQ?controls=0"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
<div class="section-texts">
<h2>Stranger Things Vol. 4</h2>
<p role="text">
Mais experientes, os heróis de Stranger Things também precisam
enfrentar desafios maiores do que nunca e fazer decisões que vão
mudar suas vidas para sempre. Confira ao lado o trailer da quarta
temporada.
</p>
</div>
</section>

<section id="section-stranger-things-gallery">
<div class="container section-text">
<h2>A segunda série mais assistida da Netflix</h2>
<ul class="gallery-container" role="gallery">
<li class="gallery-image invert-element">
<img src="assets/images/content/serie-image-01.png" alt="Imagem de Vecna" />
</li>
<li class="gallery-image invert-element">
<img src="assets/images/content/serie-image-02.png" alt="Imagem ilustrativa dos amigos de Eleven" />
</li>
<li class="gallery-image invert-element">
<img src="assets/images/content/serie-image-03.png" alt="Imagem Eleven assustada" />
</li>
</ul>
</div>
</section>

<section id="section-form" class="container">
<h2>O Clube Dungeons & Dragons</h2>
<p>
Para deter Vecna, os heróis de Stranger Things também precisam de
você. O Clube de D&D mais famoso de Hawkings está com vagas abertas
para sua próxima aventura. Se você é destemido, gosta de desafios e
não tem medo de rodar o D20, chegou a hora de se inscrever para fazer
parte da nova campanha.
</p>

<div class="form-content">
<h3>Entre para o clube de D&D e tenha experiências de <span>outro mundo<span></span></h3>

<div class="form-container">
<form>
<label for="name">Nome Completo</label>
<input type="text" name="name" id="txtName">

<label for="email">E-mail</label>
<input type="email" name="email" id="txtEmail">

<label for="level">Level</label>
<input type="text" name="level" id="txtLevel">

<label for="character">Personagem</label>
<textarea name="character" cols="30" rows="10" id="txtCharacter"></textarea>

<button type="button" id="btnSubscribe">Me inscrever</button>
</form>

</div>
</div>
</section>
</main>

<footer>
<p>
Projeto construído para fins didáticos, com o objetivo de colocar em
prática os conhecimentos de HTML, CSS e JavaScript aprendidos na DIO._
</p>
<img src="assets/images/footer/logo.svg" alt="">
</footer>

<script type="module" src="assets/js/main.js"></script>
<script>

</script>
</body>
</html>