-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adicionado todos arquivos para comparação!
- Loading branch information
1 parent
e3f4ab8
commit 4eb1ea4
Showing
10 changed files
with
536 additions
and
127 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file modified
BIN
+194 Bytes
(110%)
LOADINGPAGE/controllers/__pycache__/default.cpython-39.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,150 @@ | ||
*{ | ||
border:0.5px dashed brown; | ||
/*border:0.5px dashed brown;*/ | ||
margin:0; | ||
padding:0; | ||
box-sizing: border-box; | ||
} | ||
:root{ | ||
--bg-cast:#BB6763; | ||
--bg-az:#1A4E69; | ||
} | ||
li{ | ||
list-style:none; | ||
} | ||
a{ | ||
text-decoration:none; | ||
color:white; | ||
} | ||
|
||
#fundo{ | ||
width:100%; | ||
height:100%; | ||
z-index:-1; | ||
box-shadow: 0px 4px 90px 10px #1A4E69 inset; | ||
box-shadow: 0px 4px 90px 10px color(display-p3 0.1608 0.302 0.4039) inset; | ||
filter: blur(25px); | ||
width:100%; | ||
height:100% | ||
|
||
|
||
} | ||
|
||
div#container{ | ||
z-index:1; | ||
background:var(--bg-az); | ||
position:absolute; | ||
top:30%; | ||
left:25%; | ||
width:50%; | ||
border-radius:30px; | ||
animation-name:top; | ||
animation-duration:7s; | ||
} | ||
div#container >h1{ | ||
font-size:35pt; | ||
font-weight:bold; | ||
background:var(--bg-cast); | ||
color:var(--bg-az); | ||
text-align:left; | ||
border-radius:30px; | ||
height:100px; | ||
padding-top:20px; | ||
padding-left:30px; | ||
animation-name:top; | ||
animation-duration:4.5s; | ||
|
||
} | ||
div#container >ul{ | ||
margin-top:30px; | ||
padding:30px; | ||
display:flex; | ||
gap:10px; | ||
justify-content:space-around; | ||
flex-direction:column; | ||
align-items:flex-start; | ||
/*animation-name:right; | ||
animation-duration:3.5s;*/ | ||
} | ||
|
||
div#container >ul>li:nth-child(1){ | ||
animation-name:right; | ||
animation-duration:1s; | ||
|
||
} | ||
div#container >ul>li:nth-child(2){ | ||
animation-name:right; | ||
animation-duration:2s; | ||
|
||
} | ||
div#container >ul>li:nth-child(3){ | ||
animation-name:right; | ||
animation-duration:3s; | ||
|
||
} | ||
div#container >ul>li:nth-child(4){ | ||
animation-name:right; | ||
animation-duration:4s; | ||
|
||
} | ||
div#container >ul>li:nth-child(5){ | ||
animation-name:right; | ||
animation-duration:5s; | ||
|
||
} | ||
div#container >ul>li:nth-child(6){ | ||
animation-name:right; | ||
animation-duration:6s; | ||
|
||
} | ||
div#container >ul>li:nth-child(7){ | ||
animation-name:right; | ||
animation-duration:7s; | ||
|
||
} | ||
div#container >ul>li:nth-child(8){ | ||
animation-name:right; | ||
animation-duration:8s; | ||
|
||
} | ||
div#container >ul>li:nth-child(9){ | ||
animation-name:right; | ||
animation-duration:9s; | ||
|
||
} | ||
div#container >ul>li>a{ | ||
color:var(--bg-cast); | ||
font-size:20pt; | ||
} | ||
|
||
/*hover*/ | ||
div#container >ul > li >a:hover{ | ||
background:var(--bg-cast); | ||
color:var(--bg-az); | ||
padding-left:30px; | ||
padding:10px; | ||
border-radius:10px; | ||
opacity:0.7; | ||
transition:linear .4s; | ||
animation-name:top; | ||
animation-duration:3.5s; | ||
} | ||
|
||
@keyframes top { | ||
from { | ||
transform: translateY(-250px); | ||
} | ||
to { | ||
transform: translateY(0px); | ||
} | ||
} | ||
@keyframes right { | ||
from { | ||
transform: translateX(-250px); | ||
opacity:0.5; | ||
|
||
} | ||
to { | ||
transform: translateX(0px); | ||
opacity:1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,68 @@ | ||
var nome =document.getElementsById('aluno') | ||
nome.addEventlistenner('click', function(){ | ||
nome.innerhtml=""classe 10º" | ||
" | ||
// google firebase | ||
}) | ||
|
||
|
||
|
||
// entidades | ||
var aluno =document.getElementById('aluno') | ||
|
||
// fim entidades | ||
var container=document.getElementById('container') | ||
var icone=document.getElementById('icone') | ||
var items=document.querySelector('div#container >ul') | ||
|
||
|
||
// parte apenas do aluno | ||
aluno.addEventListener("click", function(){ | ||
|
||
|
||
|
||
// parte das classes dos alunos | ||
container.innerHTML='<h1>Qual é sua classe?</h1>'+'<ul><li><a id="classe10" href="#">10ª classe</a></li><li><a id="classe11" href="#">11ª classe</a></li><li><a id="classe12" href="#">12ª classe</a></li><li><a id="classe13" href="#">13ª classe</a></li></ul>' | ||
|
||
var classe10 =document.getElementById('classe10') | ||
var classe11 =document.getElementById('classe11') | ||
var classe12=document.getElementById('classe12') | ||
var classe13=document.getElementById('classe13') | ||
|
||
|
||
classe10.addEventListener("click", function(){ | ||
container.innerHTML='<h1>Qual é sua curso?</h1>'+'<ul><li><a id="infodegest" href="#">Informática de Gestão</a></li><li><a id="contdegest" href="#">Contabilidade de Gestão</a></li><li><a id="admdegest" href="#">Administração Pública de Gestão</a></li><li><a id="findegest" href="#">Finanças de Gestão</a></li><li><a id="grh" href="#">Gestão de Recursos Humanos</a></li></ul>' | ||
var informatica=document.getElementById('infodegest') | ||
informatica.addEventListener('click', function(){ | ||
|
||
container.innerHTML='<h1>{{user}}Qual é o turno que vai escolher?</h1>'+'<ul><li><a id="manha" href="#">Manhã</a></li></ul>' | ||
|
||
}) | ||
}) | ||
classe11.addEventListener("click", function(){ | ||
container.innerHTML='<h1>Qual é sua curso?</h1>'+'<ul><li><a id="infodegest" href="#">Informática de Gestão</a></li><li><a id="contdegest" href="#">Contabilidade de Gestão</a></li><li><a id="admdegest" href="#">Administração Pública de Gestão</a></li><li><a id="findegest" href="#">Finanças de Gestão</a></li><li><a id="grh" href="#">Gestão de Recursos Humanos</a></li></ul>' | ||
var informatica=document.getElementById('infodegest') | ||
informatica.addEventListener('click', function(){ | ||
|
||
container.innerHTML='<h1>Qual é o turno que vai escolher?</h1>'+'<ul><li><a id="tarde" href="#">Tarde</a></li></ul>' | ||
|
||
}) | ||
}) | ||
classe12.addEventListener("click", function(){ | ||
container.innerHTML='<h1>Qual é sua curso?</h1>'+'<ul><li><a id="infodegest" href="#">Informática de Gestão</a></li><li><a id="contdegest" href="#">Contabilidade de Gestão</a></li><li><a id="admdegest" href="#">Administração Pública de Gestão</a></li><li><a id="findegest" href="#">Finanças de Gestão</a></li><li><a id="grh" href="#">Gestão de Recursos Humanos</a></li></ul>' | ||
var informatica=document.getElementById('infodegest') | ||
informatica.addEventListener('click', function(){ | ||
|
||
container.innerHTML='<h1>Qual é o turno que vai escolher?</h1>'+'<ul></li><li><a id="noite" href="#">Noite</a></li></ul>' | ||
|
||
}) | ||
}) | ||
classe13.addEventListener("click", function(){ | ||
container.innerHTML='<h1>Qual é sua curso?</h1>'+'<ul><li><a id="infodegest" href="#">Informática de Gestão</a></li><li><a id="contdegest" href="#">Contabilidade de Gestão</a></li><li><a id="admdegest" href="#">Administração Pública de Gestão</a></li><li><a id="findegest" href="#">Finanças de Gestão</a></li><li><a id="grh" href="#">Gestão de Recursos Humanos</a></li></ul>' | ||
var informatica=document.getElementById('infodegest') | ||
informatica.addEventListener('click', function(){ | ||
|
||
container.innerHTML='<h1>Qual é o turno que vai escolher?</h1>'+'<ul><li><a id="manha" href="#">Manhã</a></li><li><a id="tarde" href="#">Tarde</a></li><li><a id="noite" href="#">Noite</a></li></ul>' | ||
|
||
}) | ||
}) | ||
//fim da parte das classes do alunos | ||
|
||
|
||
|
||
}) | ||
//fim da parte do aluno |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.