Skip to content
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
Binary file added audios/audio1.mp3
Binary file not shown.
Binary file modified audios/audio_documento.mp3
Binary file not shown.
Binary file modified audios/audio_turno.mp3
Binary file not shown.
Binary file modified audios/dificuldade.mp3
Binary file not shown.
Binary file added audios/matriculaouretorno.mp3
Binary file not shown.
Binary file removed audios/retornooumatreiculanova.mp3
Binary file not shown.
Binary file modified audios/tipodeensino.mp3
Binary file not shown.
100 changes: 75 additions & 25 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@
crossorigin="anonymous"></script>
<script src="js/jquery.js"></script>
<script>
$(document).ready(function () {
$("button").click(function () {
$(".modal").fadeIn();
$("aside").animate({ marginTop: "200px" });
});
$("span").click(function () {
$(".modal").fadeOut();
$("aside").animate({ marginTop: "-250px" });
});
});
$(document).ready(function () {
$("#modal-button").click(function () {
$(".modal").fadeIn();
$("aside").animate({ marginTop: "200px" });
});

$("#close-modal").click(function () {
$(".modal").fadeOut();
$("aside").animate({ marginTop: "-250px" });
});
});
</script>


Expand Down Expand Up @@ -129,8 +129,66 @@
outline: none;
color: inherit;
}



@media (max-width: 400px) {
body{
height: 900px;
width: 40%;
}
nav{
width: 122%;
}
.grid-container {
position: relative;
bottom: 40px;
display: grid;
width: 40%;
}
.grid-container {
position: relative;
bottom: 40px;
display: grid;
width: 40%;
grid-template-areas:
'menu menu'
'conteudo conteudo';
height: 100%;

}

.coteudo {
grid-area: conteudo;
display: flex;
width: 100%;
}
aside{
display: flex;
justify-content: center;
}
.Menu {

grid-area: menu;
width: 100%;
}

.buttonne {
position: relative;
bottom: 240px;
left: 450px;
width: 50px;
height: 50px;
}

.next{
left: 15pc;
top: 15pc;
}
}
.coteudo{
display: flex;
}
span {
position: absolute;
right: 0;
Expand Down Expand Up @@ -205,10 +263,6 @@
<li class="nav-link"><a class="nav-link "
href="https://cesas.se.df.gov.br/ead/mod/page/view.php?id=751&forceview=1">Cursos</a></li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Pesquisar Aqui" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Pesquisar</button>
</form>
</div>
</nav>

Expand Down Expand Up @@ -239,7 +293,7 @@
background-color: #68D3EC;
margin: 0px auto 0px;">
<h4 id="videoh4" style="margin: 60px 30px 0px;">Vídeo de instrução:</h4>
<button>
<button id="modal-button">
<img src="images/youtube.png" alt="link para filme" style="text-align: center;
width: 300px; margin-top: 10px;">
</button>
Expand All @@ -254,7 +308,7 @@ <h4 id="videoh4" style="margin: 60px 30px 0px;">Vídeo de instrução:</h4>
<h4 id="audioh4">Áudio de instrução:</h4>
<audio id="audioMenu" controls autoplay style="text-align: center;
width: 320px; margin-top: 10px;">
<source src="audio_file.mp3" type="audio/mpeg">
<source src="audios/audio1.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
Expand All @@ -263,7 +317,7 @@ <h4 id="audioh4">Áudio de instrução:</h4>

</div>
<div class="conteudo" style="grid-area: conteudo; ">
<div style="display: flex;
<div class="Inscrito" style="display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
height: 60vh;">
Expand All @@ -288,8 +342,8 @@ <h4 id="audioh4">Áudio de instrução:</h4>
</div>
</div>

<div class="modal">
<span>X</span>
<div class="modal">
<span id="close-modal">X</span>
<aside>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HI6gMkfRjE0?si=FvDkgCbjWSLHew_B"
title="YouTube video player" frameborder="20"
Expand Down Expand Up @@ -336,8 +390,4 @@ <h4 id="audioh4">Áudio de instrução:</h4>


</script>
</html>




</html>
Loading