Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4017e6f
Organização techs
gabazevdo Apr 10, 2022
482b02d
DARKTHEME, Tags semanticas, variaveis CSS
gabazevdo Apr 11, 2022
00c3324
Alterando font-text na responsividade
gabazevdo Apr 11, 2022
9598d8b
Adiçao de imagens nos tópicos
AliciaOliveiras Apr 11, 2022
69ee300
nome dos colaboradores do projeto
Lucas5497 Apr 11, 2022
3ea8b66
Merge pull request #1 from gabazevdo/AliciaOliveiras
gabazevdo Apr 11, 2022
bbdf10b
renomeando imagens, inserindo hover, peso das fonts
gabazevdo Apr 12, 2022
4074749
link ancora na seção Popular Post
gabazevdo Apr 12, 2022
bcd6f0b
Inserindo propriedade translate no span-linha27
gabazevdo Apr 14, 2022
d0f4fbf
Criando modal
gabazevdo Apr 14, 2022
50db407
Comentarios e organização do código
gabazevdo Apr 15, 2022
3cf4648
Estilização do conteúdo do tema Paradigmas
gabazevdo Apr 15, 2022
1a101b9
Inserindo contaúdo sobre o tema de Paradigmas
gabazevdo Apr 15, 2022
556055d
Removendo unitilizados e correções ortográficas
gabazevdo Apr 15, 2022
b3d9a60
Correção na estilização reposiva
gabazevdo Apr 15, 2022
c89bfc3
Merge branch 'main' of https://github.com/gabazevdo/checkpoint2 into …
Lucas5497 Apr 15, 2022
d882b7a
Inserindo texto - Segurança da informação - Lucas
Lucas5497 Apr 15, 2022
5b2304a
inclusao texto virtualizacao
glauciaximenes Apr 15, 2022
906606e
alteracao teste
Lucas5497 Apr 16, 2022
b74b2f4
Merge branch 'main' of https://github.com/gabazevdo/checkpoint2 into …
Lucas5497 Apr 16, 2022
1e9fc83
texto e img
Lucas5497 Apr 16, 2022
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
349 changes: 349 additions & 0 deletions assets/LooperBG.svg
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 assets/bgParadgmas.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 assets/etica_comp.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 assets/internet.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 assets/paradigmas.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 assets/redes.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 assets/seg_informatica.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 assets/virtualizacao.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
558 changes: 558 additions & 0 deletions css/style.css

Large diffs are not rendered by default.

780 changes: 658 additions & 122 deletions index.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
///////////////////// DARKTHEME
const html = document.querySelector("html");
const checkbox = document.querySelector("#checkbox");

checkbox.addEventListener("change", () => {
html.classList.toggle("dark-mode");
});

///////////////////// MODAL
let btn = document.getElementById("btn");
let span = document.getElementsByClassName("close")[0];

// Função para aparecer o modal
function openModal(mn) {
let modal = document.getElementById(mn);

if (typeof modal == "undefined" || modal === null) return;

modal.style.display = "Block";
//Ao clicar no botão, o body ficará sem a barra de rolagem:
document.body.style.overflow = "hidden";


// Ao clicar fora do modal ele fica com display: none
window.addEventListener("click", function (e) {
if (e.target == modal) {
modal.style.display = "none";
document.body.style.overflow = "auto";
}
});


// Quando clica em (x) o modal fica com display: none
span.addEventListener("click", function () {
modal.style.display = "none";
document.body.style.overflow = "auto";

});

// Quando clicar a tecla 'esc' do teclado fecha o modal
window.addEventListener("keydown", function (e) {
if (e.keyCode == 27 && modal.style.display == "block") {
modal.style.display = "none";
document.body.style.overflow = "auto";
}
});
}

// Inspirações para o modal:
// https://codepen.io/chomikoo/pen/oWWapq
// https://www.youtube.com/watch?v=NXdjf6GJSKo&ab_channel=SatellaSoft
64 changes: 0 additions & 64 deletions template.css

This file was deleted.