Skip to content

Commit

Permalink
Padronização do site
Browse files Browse the repository at this point in the history
  • Loading branch information
EngDann committed Jul 23, 2024
1 parent 8d3880f commit 7f1a4b3
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 21 deletions.
Binary file added docs/assets/moon.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 docs/assets/sun.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 31 additions & 21 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>SIGE IE</title>
<link rel="icon" href="assets/favicon_transparent_32x32.png" />
<link
rel="icon"
href="assets/favicon_transparent_32x32.png"
size="32x32"
/>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/tailwind.min.css"
Expand Down Expand Up @@ -85,7 +89,8 @@
style="background: transparent"
>
<img
src="assets/day-and-night.png"
id="img-sun-moon"
src="assets/sun.png"
alt="Modo Noturno"
class="h-6 w-6 hover:scale-110 transition-transform duration-300 ease-in-out sun-moon"
/>
Expand Down Expand Up @@ -345,7 +350,7 @@
<h2
class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800 dark:text-white"
>
Time
Equipe de Desenvolvimento
</h2>
<div class="w-full mb-4">
<div
Expand Down Expand Up @@ -395,9 +400,12 @@
/>
</a>
</div>
<p class="text-gray-600 mb-8 dark:text-gray-300">
Desenvolvedor Frontend, UX Design.
</p>
<ul class="text-gray-600 mb-8 dark:text-gray-300">
<li>• Desenvolvedor Mobile</li>
<li>• Desenvolvedor Web</li>
<li>• UX e UI designer</li>
<li>• Analista de requisitos</li>
</ul>
</div>
<div class="p-6 text-center">
<h3
Expand Down Expand Up @@ -441,9 +449,9 @@
/>
</a>
</div>
<p class="text-gray-600 mb-8 dark:text-gray-300">
Desenvolvedor backend.
</p>
<ul class="text-gray-600 mb-8 dark:text-gray-300">
<li>Desenvolvedor backend</li>
</ul>
</div>
<div class="p-6 text-center">
<h3
Expand Down Expand Up @@ -487,9 +495,9 @@
/>
</a>
</div>
<p class="text-gray-600 mb-8 dark:text-gray-300">
Desenvolvedor backend.
</p>
<ul class="text-gray-600 mb-8 dark:text-gray-300">
<li>Desenvolvedor backend</li>
</ul>
</div>
<div class="p-6 text-center">
<h3
Expand Down Expand Up @@ -533,11 +541,12 @@
/>
</a>
</div>
<p class="text-gray-600 mb-8 dark:text-gray-300">
Responsável pela codificação do backend,
configuração da infraestrutura, e participação na
codificação do frontend e integração com o backend.
</p>
<ul class="text-gray-600 mb-8 dark:text-gray-300">
<li>• Responsável pela codificação do backend</li>
<li>• Configuração da infraestrutura</li>
<li>• Participação na codificação do frontend</li>
<li>• Integração com o backend</li>
</ul>
</div>
<div class="p-6 text-center">
<h3
Expand Down Expand Up @@ -581,10 +590,11 @@
/>
</a>
</div>
<p class="text-gray-600 mb-8 dark:text-gray-300">
Levantamento de requisitos, gerenciamento da
documentação e validação com a cliente.
</p>
<ul class="text-gray-600 mb-8 dark:text-gray-300">
<li>• Levantamento de requisitos</li>
<li>• Gerenciamento da documentação</li>
<li>• Validação com a cliente</li>
</ul>
</div>
</div>
</div>
Expand Down
2 changes: 2 additions & 0 deletions docs/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ document.getElementById("modeToggle").addEventListener("click", function () {
if (document.body.classList.contains("dark-mode")) {
document.getElementById("image1").src = "assets/Electrician-black.gif";
document.getElementById("image2").src = "assets/Electrician2-black.gif";
document.getElementById("img-sun-moon").src = "assets/moon.png";
document.querySelector(".gradient-bg").classList.add("dark-mode");
} else {
document.getElementById("image1").src = "assets/Electrician.gif";
document.getElementById("image2").src = "assets/Electrician2.gif";
document.getElementById("img-sun-moon").src = "assets/sun.png";
document.querySelector(".gradient-bg").classList.remove("dark-mode");
}
});
Expand Down

0 comments on commit 7f1a4b3

Please sign in to comment.