Skip to content

Commit

Permalink
removendo partes do index
Browse files Browse the repository at this point in the history
  • Loading branch information
VictoriaPriscila28 committed Apr 20, 2024
1 parent 3e3a803 commit 11d9f72
Show file tree
Hide file tree
Showing 14 changed files with 217 additions and 264 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## projeto em desenvolvimento
63 changes: 63 additions & 0 deletions clinicas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<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>Clinicas</title>

<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">

<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">

<link rel="manifest" href="manifest.json">

</head>

<body>
<div class="container4">
<!--Parte superior-->
<!--Cabeçalho-->
<div class="header4">
<span class="logo">Mapa</span>
</div>
<!--Cabeçalho Fim-->
<div class="titulos">

</div>
<div id="map"></div>
<!-- footer section starts -->

<!--Navegação-->
<footer class="bottom-navbar">
<a href="home.html">
<i class="fas fa-home" alt="home"></i>
<span>home</span>
</a> <a href="clinicas.html">
<i class="fa-solid fa-map" alt="mapa"></i>
<span>Clinicas</span>
</a>
<a href="conversa.html">
<i class="fa-solid fa-book-open"></i>
<span>chat</span>
</a>

<a href="mais.html" aria-label="area-perfil">
<i class="fas fa-user" alt="perfil"></i>
<span>Perfil</span>
</footer>



</section>

<!-- footer section ends -->


<!-- js file link -->
<script src="js/script.js"></script>

</body>
</html>
32 changes: 32 additions & 0 deletions clinicas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"clinicas": [
{
"nome": "Clínica MultiNós – Centro Integrado de Especialidades",
"endereco": "Avenida Governador Agamenon Magalhães 2939",
"cidade": "Recife",
"especialidades": ["Psicologia", "Terapia Cognitivo-Comportamental"],
"horario_funcionamento": {
"segunda": "09:00 - 18:00",
"terca": "09:00 - 18:00",
"quarta": "09:00 - 20:00",
"quinta": "09:00 - 18:00",
"sexta": "09:00 - 17:00"
}
},
{
"nome": "Clínica da Mente Serena",
"endereco": "Av. da Paz, 456",
"cidade": "Rio de Janeiro",
"especialidades": ["Psicologia", "Mindfulness"],
"horario_funcionamento": {
"segunda": "10:00 - 19:00",
"terca": "10:00 - 19:00",
"quarta": "10:00 - 19:00",
"quinta": "10:00 - 19:00",
"sexta": "10:00 - 17:30"
}
}

]
}

Empty file added conversa.html
Empty file.
39 changes: 38 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -595,4 +595,41 @@ section:nth-child(even){
font-size: 50%;
}

}
}

/*Navegação*/
.bottom-navbar {
position: fixed;
bottom: 0;
width: 100%;
display: flex;
justify-content: space-around;
padding: 25px 0 ;
border-radius: 30px 30px 0px 0px;
background-color: var(--cor--fundo)
}


.bottom-navbar a:hover {
color:var(--cor--hover);
}


.bottom-navbar a {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
text-decoration: none;
color: #965d5d;
font-size: 18px;
}
/*muda a cor do bottom navigation*/
:root {
--cor--fundo: #9978A7;
--cor--hover: #C4B1CC;
--cor--bg:#F5F2F6;
--cor--hover2: #AA8FB6;
--cor--bgwhite: #E1E1E1;
--cor--escura: #5D4966;
}
Binary file added icons/196.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 icons/512.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 icons/appstore.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 icons/icon.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 icons/playstore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 11d9f72

Please sign in to comment.