Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
be5e6c6
mensaje
khammylv Oct 10, 2022
bedb7cc
agregada algunas funciones
khammylv Oct 10, 2022
2ae2f09
se crearon en el main las vistas simples de todas las peliculas y el …
khammylv Oct 12, 2022
a13102a
se creo un menu para poder probar e inplementar los filtros requerido…
khammylv Oct 13, 2022
c7df097
se cambio todo segun la HU 1
khammylv Oct 13, 2022
e2723ec
cambios para correr test a futuro y hacer el codigo solicitado
khammylv Oct 14, 2022
f21a485
hito 2 conforme a HU
khammylv Oct 15, 2022
7fdaf5d
HU3 esta terminada con los test realizado
khammylv Oct 17, 2022
96435a5
se hizo todo responsive y se acomodo el boton de vermas
khammylv Oct 18, 2022
45b52c8
cambios realizados antes de crear la rama
khammylv Oct 18, 2022
7a71b61
hito 4 realizado
khammylv Oct 18, 2022
023d98a
hito 5 completado
khammylv Oct 19, 2022
ee15908
Update README.md
khammylv Oct 19, 2022
161ab58
eliminar imagen
khammylv Oct 19, 2022
bddb92f
Update README.md
khammylv Oct 19, 2022
533c7d3
se agrego configuracion en el main para que aceptara el responsive
khammylv Oct 19, 2022
00b21d6
se mejoro el responsive de la pagina
khammylv Oct 20, 2022
6275c4f
test de la funcion estadistica
khammylv Oct 24, 2022
6dce5e9
cambio de vistas de las estadisticas
khammylv Oct 25, 2022
d0e4738
proyecto final
khammylv Oct 25, 2022
7d5982b
Update README.md
khammylv Oct 25, 2022
940b3b3
Update README.md
khammylv Oct 25, 2022
941333d
comparacion estricta
khammylv Oct 27, 2022
7876d44
mejoras al data js
khammylv Nov 3, 2022
b583ea9
arreglo de errores
khammylv Mar 14, 2023
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
693 changes: 39 additions & 654 deletions README.md

Large diffs are not rendered by default.

5,127 changes: 5,127 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^27.0.1",
"chart.js": "^3.9.1",
"eslint": "^8.3.0",
"gh-pages": "^3.1.0",
"htmlhint": "^1.0.0",
Expand All @@ -27,4 +28,3 @@
"node": ">=16.x"
}
}

115 changes: 115 additions & 0 deletions src/css/cards.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@


.peliculas{
padding: 10px 0px;
display:flex;
flex-wrap: wrap;
justify-content: space-evenly;

}

.card_pelicula{
border-radius: 5px;
width: 250px;
height:450px;
box-shadow: var(--sombra);
text-transform: uppercase;
font-size: 12px;
margin-bottom: 15px;
background-color: var(--cremita_color);
color: white;
}
.textos_card{
margin: 5px 0px;
padding: 0 10px;
}


.textos_card h2{
font-family: 'PT Serif', serif;
color: white;
font-weight: bold;
font-size:12px;
}

.card_pelicula img{
border-radius: 5px 5px 0 0;
width: 100%;
height: 350px;

}

.boton_card{
display:flex;
justify-content: space-between;
padding: 0 10px;
align-items:center;
}


.boton_card i{
font-size: 20px;
color: #ffd60a
}

.boton_card p{
font-weight: 600;
}

.select{
background: var(--rosa_color);
border: none;
padding: 4px;
color: white;
border-radius: 2px;
cursor: pointer;
box-shadow: var(--sombra);
}

.select:hover{
transform: scale(1.1);
background: var(--rosa_fuerte_color);
box-shadow: var(--sombra);
color: white;
}

/*RESPONSIVE */

@media (max-width: 600px){
.textos_card h2{
font-size:10px;
}

.card_pelicula{
width: 150px;
height: 315px;
font-size: 8px;
}
.card_pelicula img{
width: 100%;
height: 200px;

}
.textos_card{
margin: 5px 0px;
padding: 0 10px;
font-size: 10px;
}

.boton_card i{
font-size: 10px;

}

.boton_card p{
font-size: 10px;
font-weight: 300;
}

}

@media (max-width: 500px){
.card_pelicula{
margin-left: 5px;
}
}
62 changes: 62 additions & 0 deletions src/css/division.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
.division{
width: 100%;
height: 60px;
background: var(--modal_degradado);


}

.figure{

height: 100%;
width: 100%;
/*animation-name: moverTotoro;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;*/
}

.figure img{
width: 40px;
height: 40px;
margin-top: 10px;
}

@keyframes moverTotoro{
0%{
transform: translateX(0%)
}
100%{
transform: translateX(100%)
}
}



@media (max-width:1350px){

@keyframes moverTotoro{
0%{
transform: translateX(0%)
}
100%{
transform: translateX(0%)
}
}

}


@media (max-width: 415px){
.figure img{
width: 20px;
height: 20px;
margin-top: 20px;
}
.division{
width: 100%;
height: 30px;
}


}
Loading