Skip to content

Commit

Permalink
villegas diseño
Browse files Browse the repository at this point in the history
  • Loading branch information
panax2 committed Sep 22, 2014
1 parent 56aca1d commit 8b2daed
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 24 deletions.
21 changes: 15 additions & 6 deletions css/index_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ h3,h5 {
padding-top: 10px;
opacity: .6;
}

div#contendor_index{
margin-left: 20px
}
#Back {
float: center;
margin-left: -95px;
Expand All @@ -30,7 +32,7 @@ h3,h5 {
background: -webkit-linear-gradient(right, #120A2A, #086A87);
}

div.contenedor {
.contenedor{
width: 150px;
height: 240px;
margin:110px auto;
Expand All @@ -40,17 +42,24 @@ div.contenedor {
-webkit-transition:height .4s;
-o-transition:height .4s;
}

#uno
{
margin-left: 100px;
}
#dos
{
margin-left: 180px;
}
div#uno {
background-color: rgb(22,107,162);
background-color: rgb(27,54,71);
}

div#dos {
background-color: rgb(27,54,71);
background-color: rgb(10, 156, 151);;
}

div#tres {
background-color: rgb(21,48,54);
background-color: rgb(29, 88, 36);
}

img.icon {
Expand Down
30 changes: 12 additions & 18 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,18 @@
<div id="Aside_Log">
<h3>AULA VIRTUAL</h3>
<h5>SELECCIÓN DE TIPO DE USUARIO</h5>
<a href="pags/loginMaestro.php">
<div class="contenedor" id="uno">
<img class="icon" src="imgs/icon1.png" />
<p class="texto">Profesor</p>
</div>
</a>
<a href="pags/loginAlumno.php">
<div class="contenedor" id="dos">
<img class="icon" src="imgs/icon2.png" />
<p class="texto">Alumno</p>
</div>
</a>
<a href="pags/loginAdmin.php">
<div class="contenedor" id="tres">
<img class="icon" src="imgs/icon3.png" />
<p class="texto">Administrador</p>
</div>
</a>
<a href="pags/loginMaestro.php">
<div class="contenedor" id="uno">
<img class="icon" src="imgs/icon1.png" />
<p class="texto">Profesor</p>
</div>
</a>
<a href="pags/loginAdmin.php">
<div class="contenedor" id="tres">
<img class="icon" src="imgs/icon3.png" />
<p class="texto">Administrador</p>
</div>
</a>
</div>
</div>

Expand Down
16 changes: 16 additions & 0 deletions index2.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php include("includes/header.php");?>

<div id="Back">
<div id="Aside_Log">
<h3>AULA VIRTUAL</h3>
<h5>SELECCIÓN DE TIPO DE USUARIO</h5>
<a href="pags/loginAlumno.php">
<div class="contenedor" id="dos">
<img class="icon" src="imgs/icon2.png" />
<p class="texto">Alumno</p>
</div>
</a>
</div>
</div>

<?php include("includes/footer.php");?>

0 comments on commit 8b2daed

Please sign in to comment.