Skip to content

Commit

Permalink
Pequeños cambios estéticos
Browse files Browse the repository at this point in the history
  • Loading branch information
franpb14 authored Feb 1, 2021
1 parent 61af0dc commit 0374c06
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
20 changes: 15 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,22 @@
<div id="maincontainer" style="background-color: white;" class="container-fluid">
<div class="container">
<div id="seccion1">

<div class="row justify-content-center">
<label for="input-file">Selecciona el ".html"</label>
Selecciona el ".html"
</div>
<div class="row justify-content-center">
<label style="cursor: pointer; " class="btn btn-outline-primary" for="input-file">Seleccionar archivo</label>
</div>
<div class="row justify-content-center">
<input type="file" id="input-file">
<div id="Archivo">Ningún archivo seleccionado</div>
<input hidden type="file" id="input-file">

<script>
document.getElementById('input-file').onchange = function () {
document.getElementById("Archivo").innerText= document.getElementById('input-file').files[0].name;
}
</script>

</div>
<div class="row justify-content-center" style="margin-top: 20px;">
Una vez seleccionado el archivo pulse:
Expand Down Expand Up @@ -220,7 +230,7 @@ <h5 class="modal-title" id="exampleModalLongTitle">Cambiar pregunta a estudiar</
<div class="max-w-screen-xl mx-auto px-4">
<ul class="max-w-screen-md mx-auto text-lg font-light flex flex-wrap justify-between">
<li class="my-2">
<a style="color: white;" href="./extras.html">
<a style="color: white;" href="./extras.html" >
Extras
</a>
</li>
Expand Down Expand Up @@ -260,7 +270,7 @@ <h5 class="modal-title" id="exampleModalLongTitle">Cambiar pregunta a estudiar</
window.onclick=()=>{


maincontainer.style.marginBottom = getComputedStyle(footer).height
maincontainer.style.marginBottom = getComputedStyle(footer).height


}
Expand Down
8 changes: 8 additions & 0 deletions resources/sheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ select{
left:-2500px;
transition:left 1s linear;
}
.btn-outline-primary{
border-color:#fb9407 !important;
color: #fb9407 !important;
}
.btn-outline-primary:hover{
color: white !important;
background-color: #fb9407 !important;
}
#animacion1{
margin-left:20%;
width: 75%;
Expand Down

1 comment on commit 0374c06

@vercel
Copy link

@vercel vercel bot commented on 0374c06 Feb 1, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.