File tree 12 files changed +195
-43
lines changed
12 files changed +195
-43
lines changed Original file line number Diff line number Diff line change 19
19
"devDependencies" : {
20
20
"@vitejs/plugin-vue" : " ^4.1.0" ,
21
21
"prettier" : " ^2.8.6" ,
22
- "sass" : " ^1.59.3 " ,
22
+ "sass" : " ^1.60.0 " ,
23
23
"vite" : " ^4.2.1"
24
24
}
25
25
}
Original file line number Diff line number Diff line change 9
9
--pergamino : #ebd78d ;
10
10
--tinta : #2b2d42 ;
11
11
--hierro : #676768 ;
12
+ --oro : #ffd700 ;
12
13
--alma1 : #00aaaa ;
13
14
--alma2 : #cef8f5 ;
14
15
--slime1 : ;
Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ function cambiarVista(nuevaVista) {
28
28
html ,
29
29
body ,
30
30
h1 ,
31
+ h2 ,
32
+ h3 ,
33
+ li ,
31
34
ul {
32
35
margin : 0 ;
33
36
padding : 0 ;
Original file line number Diff line number Diff line change 1
1
<script setup></script >
2
2
3
3
<template >
4
- <img id =" " src =" /recursos/imagenes/Inicio.jpg" />
4
+ <img id =" fondoPrincipal" src =" /recursos/imagenes/Inicio.jpg" />
5
+ <div id =" contenedorPrincipal" >
6
+ <div id =" contenedorTitulo" >
7
+ <img id =" tituloPrincipal" src =" /recursos/imagenes/Boton4-0s.png" />
8
+ <h2 id =" textoTitulo" >El Camino</h2 >
9
+ </div >
10
+ <div id =" contenedorBoton" >
11
+ <RouterLink to =" /Transicion" >
12
+ <img id =" botonInicio" src =" /recursos/imagenes/Boton3-0s.png" />
13
+ <span id =" textoBoton" > Iniciar trayecto </span >
14
+ </RouterLink >
15
+ </div >
16
+ </div >
5
17
</template >
6
18
7
- <style lang="scss" scoped></style >
19
+ <style lang="scss" scoped>
20
+ @import ' ../../../recursos/scss/constantes' ;
21
+
22
+ html ,
23
+ body ,
24
+ h1 ,
25
+ h2 ,
26
+ h3 ,
27
+ div ,
28
+ span {
29
+ padding : 0 ;
30
+ margin : 0 ;
31
+ }
32
+
33
+ #fondoPrincipal {
34
+ z-index : -1 ;
35
+ position : fixed ;
36
+ top : 0 ;
37
+ left : 0 ;
38
+ width : 100vw ;
39
+ height : 100vh ;
40
+ }
41
+
42
+ #contenedorPrincipal {
43
+ display : flex ;
44
+ flex-direction : column ;
45
+ justify-content : center ;
46
+ align-items : center ;
47
+ }
48
+
49
+ #contenedorTitulo {
50
+ position : relative ;
51
+ top : 1em ;
52
+
53
+ :hover {
54
+ #textoTitulo {
55
+ color : #cef8f5 ;
56
+ }
57
+ }
58
+ }
59
+
60
+ #tituloPrincipal {
61
+ width : 45em ;
62
+ height : 15em ;
63
+ }
64
+ #textoTitulo {
65
+ font-family : ' Alquimia' ;
66
+ font-size : 10em ;
67
+ position : absolute ;
68
+ top : 0.25em ;
69
+ left : 0.4em ;
70
+ color : #00aaaa ;
71
+ }
72
+
73
+ #contenedorBoton {
74
+ position : relative ;
75
+ top : 0.5em ;
76
+ :hover {
77
+ #textoBoton {
78
+ color : #676768 ;
79
+ }
80
+ }
81
+ }
82
+
83
+ #botonInicio {
84
+ position : relative ;
85
+ width : 15em ;
86
+ height : 5em ;
87
+ }
88
+
89
+ #textoBoton {
90
+ font-family : ' Alquimia' ;
91
+ font-size : 2em ;
92
+ color : #2b2d42 ;
93
+ position : absolute ;
94
+ top : 1em ;
95
+ left : 1em ;
96
+ }
97
+ </style >
Original file line number Diff line number Diff line change @@ -7,10 +7,12 @@ defineProps({
7
7
8
8
<template >
9
9
<div id =" contenedor" >
10
- <div id =" contenedorTitulo" >
11
- <h1 id =" titulo" >El Camino</h1 >
12
- <img id =" imagenTitulo" src =" /recursos/imagenes/Boton1-0s.png" />
13
- </div >
10
+ <RouterLink to =" /" >
11
+ <div id =" contenedorTitulo" >
12
+ <h2 id =" titulo" >El Camino</h2 >
13
+ <img id =" imagenTitulo" src =" /recursos/imagenes/Boton1-0s.png" />
14
+ </div >
15
+ </RouterLink >
14
16
<img id =" fondo" src =" /recursos/imagenes/Menu.png" />
15
17
<ul id =" menu" >
16
18
<!-- <li class="botones" @click="cambiarVista('Aventura')">
78
80
left : 0.2em ;
79
81
font-family : ' Alquimia' ;
80
82
font-size : 2.5vw ;
81
- color : var ( --tinta ) ;
83
+ color : #2b2d42 ;
82
84
z-index : 3 ;
85
+
86
+ :visited {
87
+ color : #2b2d42 ;
88
+ }
83
89
}
84
90
#imagenTitulo {
85
91
width : 10.5vw ;
89
95
90
96
.botones {
91
97
font-family : ' Alquimia' ;
92
- color : var ( --tinta ) ;
98
+ color : #2b2d42 ;
93
99
padding : 0 ;
94
100
border : none ;
95
101
background : none ;
106
112
cursor : pointer ;
107
113
108
114
li {
109
- color : var ( --tinta ) ;
115
+ color : #2b2d42 ;
110
116
111
117
& :hover {
112
118
span {
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ defineProps({
55
55
}
56
56
}
57
57
#contenedorPrincipal {
58
- margin-left : 30 vw ;
59
- width : 70 vw ;
60
- height : 100 vh ;
58
+ margin-left : 40 em ;
59
+ width : 70 em ;
60
+ height : 70 em ;
61
61
display : flex ;
62
62
position : absolute ;
63
63
top : 0 ;
@@ -88,14 +88,14 @@ defineProps({
88
88
}
89
89
90
90
#imagenTitulo {
91
- width : 18 vw ;
92
- height : 12 vh ;
91
+ width : 20 em ;
92
+ height : 7.5 em ;
93
93
94
94
& .Portafolio {
95
- width : 20 vw ;
95
+ width : 25 em ;
96
96
}
97
97
& .Alma {
98
- width : 20 vw ;
98
+ width : 25 em ;
99
99
}
100
100
}
101
101
Original file line number Diff line number Diff line change 1
1
<script setup></script >
2
2
3
3
<template >
4
- <div id =" miAlma " >
5
- <h2 id =" elFuturo " >El Futuro Digital </h2 >
6
- <span id =" laTecnologia " > </span >
4
+ <div id =" milyun " >
5
+ <h2 id =" graciasEternas " >Agradecimientos </h2 >
6
+ <span id =" todosAyudaron " > </span >
7
7
<img id =" contenedorTexto" src =" /recursos/imagenes/Test.png" />
8
8
</div >
9
9
</template >
Original file line number Diff line number Diff line change 29
29
align-items : center ;
30
30
}
31
31
#cuadro {
32
- margin-top : 5 vh ;
32
+ margin-top : 2.5 em ;
33
33
display : block ;
34
34
border-style : groove ;
35
35
border-color : #ebd78d ;
36
- width : 15 vw ;
37
- height : 15 vw ;
38
- border : 15 px groove #ebd78d ;
36
+ width : 17.5 em ;
37
+ height : 17.5 em ;
38
+ border : 1 em groove #ebd78d ;
39
39
}
40
40
#avatar {
41
- width : 15 vw ;
42
- height : 15 vw ;
41
+ width : 17.5 em ;
42
+ height : 17.5 em ;
43
43
border-style : ridge ;
44
44
border-color : #ebd78d ;
45
45
border : 1em ;
46
46
}
47
47
48
48
#miHistoria {
49
- margin-top : 5 vh ;
50
- width : 50 vw ;
49
+ margin-top : 2.5 em ;
50
+ width : 70 em ;
51
51
position : relative ;
52
52
}
53
53
#losCopitos {
54
54
font-family : ' Alquimia' ;
55
- font-size : 4 em ;
55
+ font-size : 5 em ;
56
56
color : #cef8f5 ;
57
57
position : absolute ;
58
- top : 0 ;
59
- left : 2. 2em ;
58
+ top : 0.2 ;
59
+ left : 2em ;
60
60
}
61
61
62
62
#lasOrejitas {
63
63
font-family : ' kiwi' ;
64
64
font-size : 2em ;
65
65
position : absolute ;
66
- top : 2.5 em ;
66
+ top : 3 em ;
67
67
}
68
68
69
69
#contenedorTexto {
70
- width : 55 vw ;
71
- height : 70 vh ;
70
+ width : 75 em ;
71
+ height : 50 em ;
72
72
margin-left : -2em ;
73
73
}
74
74
</style >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Aventura from '../componentes/Inicio/Aventura.vue';
4
4
5
5
<template >
6
6
<div class =" inicio" >
7
- <h1 class =" cabeza" >Inicio de el camino</h1 >
7
+ <h1 class =" cabeza" >Inicio de el camino... </h1 >
8
8
<Aventura />
9
9
</div >
10
10
</template >
@@ -13,5 +13,11 @@ import Aventura from '../componentes/Inicio/Aventura.vue';
13
13
@import ' ../../recursos/scss/constantes' ;
14
14
15
15
.cabeza {
16
+ font-family : ' Alquimia' ;
17
+ color : #cef8f5 ;
18
+ position : absolute ;
19
+ bottom : 0 ;
20
+ right : 1em ;
21
+ opacity : 50% ;
16
22
}
17
23
</style >
Original file line number Diff line number Diff line change @@ -4,12 +4,17 @@ import Menu from '../componentes/MenuPrincipal/Menu.vue';
4
4
import Principal from ' ../componentes/MenuPrincipal/Principal.vue' ;
5
5
import GuardaEscobas from ' ../componentes/GuardaEscobas.vue' ;
6
6
7
+ function cambiarVista (nuevaVista ) {
8
+ // console.log(nuevaVista);
9
+ vista .value = nuevaVista;
10
+ }
11
+
7
12
const vista = ref (' Sobre Mi' );
8
13
</script >
9
14
10
15
<template >
11
16
<div class =" MenuPrincipal" >
12
- <h1 >El Camino se divide...</h1 >
17
+ <!-- <h1 class="cabeza" >El Camino se divide...</h1> -- >
13
18
<Menu :cambiarVista =" cambiarVista" />
14
19
<Principal :vista =" vista" />
15
20
<GuardaEscobas />
@@ -18,4 +23,13 @@ const vista = ref('Sobre Mi');
18
23
19
24
<style lang="scss" scoped>
20
25
@import ' ../../recursos/scss/constantes' ;
26
+
27
+ .cabeza {
28
+ font-family : ' Alquimia' ;
29
+ color : #cef8f5 ;
30
+ position : absolute ;
31
+ bottom : 0 ;
32
+ right : 0em ;
33
+ opacity : 50% ;
34
+ }
21
35
</style >
Original file line number Diff line number Diff line change 1
- <script setup></script >
1
+ <script setup>
2
+ import Escena from ' ../componentes/Transición/Escena.vue' ;
3
+ </script >
2
4
3
5
<template >
4
- <div class =" Transicion" >
5
- <h1 >El camino sigue...</h1 >
6
+ <div class =" transicion" >
7
+ <h1 class =" cabeza" >El camino sigue...</h1 >
8
+ <RouterLink to =" /menu-principal" >
9
+ <img id =" botonContinuar" src =" /recursos/imagenes/Boton2-0s.png" />
10
+ <span id =" textoBoton" > Adentrarse </span >
11
+ </RouterLink >
6
12
</div >
13
+ <Escena />
7
14
</template >
8
15
9
16
<style lang="scss" scoped>
10
17
@import ' ../../recursos/scss/constantes' ;
18
+
19
+ .transicion {
20
+ background-color : #2b2d42 ;
21
+ position : absolute ;
22
+ width : 100vw ;
23
+ height : 100vh ;
24
+ }
25
+
26
+ .cabeza {
27
+ font-family : ' Alquimia' ;
28
+ color : #cef8f5 ;
29
+ position : absolute ;
30
+ bottom : 0 ;
31
+ right : 1em ;
32
+ opacity : 50% ;
33
+ }
34
+
35
+ #textoBoton {
36
+ font-family : ' Alquimia' ;
37
+ font-size : 3em ;
38
+ color : #cef8f5 ;
39
+ position : absolute ;
40
+ top : 0.75em ;
41
+ left : 0.25em ;
42
+ }
11
43
</style >
Original file line number Diff line number Diff line change @@ -440,10 +440,10 @@ rollup@^3.18.0:
440
440
optionalDependencies :
441
441
fsevents "~2.3.2"
442
442
443
- sass@^1.59.3 :
444
- version "1.59.3 "
445
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.59.3 .tgz#a1ddf855d75c70c26b4555df4403e1bbf8e4403f "
446
- integrity sha512-QCq98N3hX1jfTCoUAsF3eyGuXLsY7BCnCEg9qAact94Yc21npG2/mVOqoDvE0fCbWDqiM4WlcJQla0gWG2YlxQ ==
443
+ sass@^1.60.0 :
444
+ version "1.60.0 "
445
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.60.0 .tgz#657f0c23a302ac494b09a5ba8497b739fb5b5a81 "
446
+ integrity sha512-updbwW6fNb5gGm8qMXzVO7V4sWf7LMXnMly/JEyfbfERbVH46Fn6q02BX7/eHTdKpE7d+oTkMMQpFWNUMfFbgQ ==
447
447
dependencies :
448
448
chokidar ">=3.0.0 <4.0.0"
449
449
immutable "^4.0.0"
You can’t perform that action at this time.
0 commit comments