correction des bugs css sur home + ajout img game

Correction du bug de la page home de:
-icon loupe
-champs recherche
-fond d’image ref
-correction position indicateur
-correction fond du nom du prof
This commit is contained in:
Jerome Morjon
2015-03-05 20:30:19 +01:00
parent b655411c09
commit bb752a2e98
8 changed files with 61 additions and 35 deletions

View File

@ -7,10 +7,9 @@
<img style="height:auto; width:auto; max-width:100px;" alt="" src="./pictures/homePic/home.png">
<nav>
<form class="form-inline navbar">
<div class="form-group">
<img alt="" class="imgSearch" src="./pictures/homePic/search.png">
<div class="input-group">
</span><input type="text" class="form-control" placeholder="Rechercher un Référant">
<div class="row divRecherche">
<div class="col-xs-12">
<input class="form-control inpSear" placeholder="Rechercher un Référant" name="search" onchange="hideIcon(this);" type="text">
</div>
</div>
</form>
@ -42,7 +41,7 @@
@endif
<br>
<a href="/referents/vive.linux/games"><img class="imgRef" src="{{$ref -> image}}" width="300px" alt="{{ $ref -> name }}-Nom"></a>
<a href="/referents/vive.linux/games"><div class="well well-lg ">{{$ref -> firstname}}, {{$ref -> lastname}}</div></a>
<a href="/referents/vive.linux/games"><div class="well well-lg nomRef">{{$ref -> firstname}}, {{$ref -> lastname}}</div></a>
</div>
@endforeach
</div>
@ -66,6 +65,11 @@ blabla LOL
<script type="text/javascript">
document.oncontextmenu = new Function("return false");
function hideIcon(self) {
self.style.backgroundImage = 'none';
}
</script>
</center>
@endsection