-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
afa1fe4
commit eac1d16
Showing
16 changed files
with
1,010 additions
and
353 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
NODE_ENV = production | ||
VUE_APP_TITLE = defunciones-infancia | ||
VUE_APP_DESCRIPTION = Analizamos las causas de defunciones de niñas, niños y adolescentes en México a través del tiempo | ||
VUE_APP_TITLE = mortalidad-infancia | ||
VUE_APP_DESCRIPTION = Analizamos las causas de mortalidad de niñas, niños y adolescentes en México a través del tiempo | ||
VUE_APP_DOMAIN = https://tirandocodigo.mx | ||
VUE_APP_BASE_ROUTE = /proyectos/defunciones_infancia/ | ||
VUE_APP_BASE_ROUTE = /proyectos/mortalidad-infancia/ | ||
VUE_APP_HASH = true |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<IfModule mod_rewrite.c> | ||
|
||
RewriteEngine On | ||
RewriteBase /proyectos/mortalidad-infancia/ | ||
RewriteRule ^/proyectos/mortalidad-infancia/index\.html$ - [L] | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteRule . /proyectos/mortalidad-infancia/index.html [L] | ||
</IfModule> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,57 +1,77 @@ | ||
<template> | ||
<div id="app" class="contenedor-flex"> | ||
<div id="app"> | ||
<Header></Header> | ||
<div class="contenedor-flex"> | ||
<div class="contenedor-texto"> | ||
<h1>Mortalidad de niñas, niños y adolescentes en México</h1> | ||
<p> | ||
Este proyecto surge a partir del Datatón sobre la niñez y adolescencia | ||
en México 2023. La herramienta está dirigida a personas | ||
investigadoras, tomadoras de decisiones y a la ciudadania que busque información | ||
</p> | ||
</div> | ||
</div> | ||
<router-view class="vista-router-view" /> | ||
<Footer></Footer> | ||
|
||
<router-view class="vista-router-view"/> | ||
</div> | ||
|
||
</template> | ||
|
||
<style lang="scss"> | ||
#app, svg > text { | ||
font-family: 'Source Sans Pro', sans-serif; -webkit-font-smoothing: antialiased; | ||
<script> | ||
import Header from "@/components/navegacion/Header.vue"; | ||
import Footer from "@/components/navegacion/Footer.vue"; | ||
export default{ | ||
components: { | ||
Header, | ||
Footer | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" > | ||
#app, | ||
svg > text { | ||
font-family: "Roboto", sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
color: black; | ||
} | ||
.contenedor-flex{ | ||
.contenedor-flex { | ||
display: flex; | ||
} | ||
body{ | ||
body { | ||
margin: 0; | ||
background: rgba(255,255,255,.7); | ||
.vista-router-view{ | ||
padding: 0px 15px; | ||
padding: 0px 15px; | ||
background: #eee !important; | ||
.vista-router-view { | ||
max-width: 1280px; | ||
margin: auto; | ||
} | ||
} | ||
#nav { | ||
padding: 30px; | ||
a { | ||
font-weight: bold; | ||
color: black; | ||
&.router-link-exact-active { | ||
color: #42b983; | ||
} | ||
.contenedor-texto { | ||
max-width: 720px; | ||
margin: auto; | ||
} | ||
} | ||
h1{ | ||
h1 { | ||
font-size: 30px; | ||
margin-top: 0px; | ||
margin-bottom:10px | ||
margin-bottom: 10px; | ||
} | ||
@media (max-width: 768px) { | ||
h1{ | ||
font-size: 24px | ||
} | ||
} | ||
.pie{ | ||
p{ | ||
b{ | ||
font-weight: 700; | ||
} | ||
} | ||
h1 { | ||
font-size: 24px; | ||
} | ||
} | ||
.pie { | ||
p { | ||
b { | ||
font-weight: 700; | ||
} | ||
} | ||
} | ||
</style> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.