Skip to content

Commit e9e1eef

Browse files
author
Daniel Hoyos Q
committed
πŸŽ‰ Portafolio
1 parent 55434d4 commit e9e1eef

File tree

15 files changed

+295
-251
lines changed

15 files changed

+295
-251
lines changed

β€ŽInicio.vue

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<script>
2+
3+
</script>
4+
5+
<template>
6+
7+
8+
</template>
9+
10+
11+
<style>
12+
13+
</style>

β€ŽUtilidades/utilidades.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export function obtenerVariablesCSS(nombre) {
2+
const ele = window.getComputedStyle(document.body, '');
3+
return ele.getPropertyValue(nombre);
4+
}

β€Žestaticos/fuentes/Alkhemikal.ttf

43.7 KB
Binary file not shown.

β€Žestaticos/fuentes/KiwiSoda.ttf

48.1 KB
Binary file not shown.

β€Žindex.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Plantilla Vite</title>
7+
<title>..::Caminante::..</title>
88
</head>
99
<body>
1010
<div id="aplicacion"></div>

β€Žpackage.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"lint:fix": "prettier --write --list-different ."
1414
},
1515
"dependencies": {
16-
"vue": "^3.2.40"
16+
"vue": "^3.2.47"
1717
},
1818
"devDependencies": {
19-
"@vitejs/plugin-vue": "^3.1.2",
20-
"prettier": "^2.7.1",
21-
"sass": "^1.55.0",
22-
"vite": "^3.1.4"
19+
"@vitejs/plugin-vue": "^4.0.0",
20+
"prettier": "^2.8.4",
21+
"sass": "^1.58.3",
22+
"vite": "^4.1.4"
2323
}
2424
}

β€Žrecursos/scss/_constantes.scss

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
:root {
2+
//
3+
4+
//Fuentes
5+
6+
//Colores
7+
8+
//TamaΓ±os Pantallas
9+
}

β€Žsrc/Aplicacion.vue

+22-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11
<script setup>
2-
import Hola from './componentes/Hola.vue';
2+
//import Hola from './componentes/Hola.vue';
33
</script>
44

55
<template>
6-
<Hola />
6+
<body>
7+
<div id="menuP"></div>
8+
<div id="principal"></div>
9+
</body>
710
</template>
811

9-
<style lang="scss" scoped></style>
12+
<style lang="scss" scoped>
13+
@font-face {
14+
font-family: kiwi;
15+
src: url(/fuentes/KiwiSoda.ttf);
16+
}
17+
18+
body {
19+
font-family: kiwi;
20+
background-image: ;
21+
}
22+
23+
#menuP {
24+
background-color: brown;
25+
width: 450px;
26+
height: 1080px;
27+
}
28+
</style>

β€Žsrc/componentes/Inicio/Ciclo.vue

Whitespace-only changes.

β€Žsrc/componentes/Inicio/Menu.vue

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<script setup></script>
2+
3+
<template></template>
4+
5+
<style lang="scss" scoped></style>

β€Žsrc/componentes/Inicio/Principal.vue

Whitespace-only changes.

β€Žsrc/componentes/Introduccion/Escena.vue

Whitespace-only changes.
File renamed without changes.

β€Žvite.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ import vue from '@vitejs/plugin-vue';
55
export default defineConfig({
66
plugins: [vue()],
77
clearScreen: false,
8+
publicDir: 'estaticos',
89
build: {
9-
outDir: './publico',
10+
outDir: './doc',
11+
assetsDir: 'recursos',
12+
sourcemap: true,
1013
},
1114
});

0 commit comments

Comments
Β (0)