maj loupe dans la barre de rech + titre home

This commit is contained in:
Jerome Morjon 2015-03-17 11:40:24 +01:00
parent ca50de606d
commit 40dae8987b
8 changed files with 21 additions and 9 deletions

Binary file not shown.

View File

@ -9,4 +9,6 @@
<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
<glyph unicode="&#xe600;" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538z" />
<glyph unicode="&#xe601;" d="M192 384l64-384h192v320h128v-320h192l64 384-320 320-320-320zM832 576v256h-128l0.312-128.312-192.312 192.312-512-512h128l384 384 384-384h128l-192 192z" />
<glyph unicode="&#xe602;" d="M784 960h-544c-132.576 0-240-107.424-240-240s107.424-240 240-240h43.648c51.072-52.032 119.68-86.72 196.352-94.336v-321.664h-96l-128-128h512l-128 128h-96v321.664c76.672 7.616 145.28 42.304 196.352 94.336h43.648c132.576 0 240 107.424 240 240s-107.424 240-240 240zM64 720c0 80.448 54.272 147.52 128 168.544v-184.544c0-58.112 15.744-112.512 42.848-159.456-94.752 2.784-170.848 80.032-170.848 175.456zM789.152 544.544c27.104 46.944 42.848 101.344 42.848 159.456v184.544c73.728-20.992 128-88.096 128-168.544 0-95.424-76.096-172.672-170.848-175.456z" />
<glyph unicode="&#xe986;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256z" />
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 816 B

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Binary file not shown.

View File

@ -1,10 +1,10 @@
@font-face {
font-family: 'icomoon';
src:url('./icomoon.eot?-e1jt8');
src:url('./icomoon.eot?#iefix-e1jt8') format('embedded-opentype'),
url('./icomoon.woff?-e1jt8') format('woff'),
url('./icomoon.ttf?-e1jt8') format('truetype'),
url('./icomoon.svg?-e1jt8#icomoon') format('svg');
src:url('icomoon.eot?swc69j');
src:url('icomoon.eot?#iefixswc69j') format('embedded-opentype'),
url('icomoon.woff?swc69j') format('woff'),
url('icomoon.ttf?swc69j') format('truetype'),
url('icomoon.svg?swc69j#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
@ -23,6 +23,10 @@
-moz-osx-font-smoothing: grayscale;
}
.icon-trophy:before {
content: "\e602";
}
.icon-home:before {
content: "\e601";
}
@ -31,3 +35,7 @@
content: "\e600";
}
.icon-search:before {
content: "\e986";
}

View File

@ -188,4 +188,3 @@ height:33px;
#back_ref img {
vertical-align:middle;
}

BIN
SRC/public/imgs/Search.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -2,10 +2,10 @@
@section('content')
@if ($referents != [])
<h1 class="homeTitle"> Jeux Educatifs du musée Augustin </h1>
<nav>
<input name="searchterm" id="searchterm" placeholder="Rechercher un référent" type="text">
</nav>
<input name="searchterm" class="icon-search" id="searchterm" placeholder="&#xe986; Rechercher un référent" type="text">
</nav>
<div id="referents" class="referents">
@foreach ($referents as $referent)
@ -21,6 +21,9 @@
@endif
@endsection
@section('page-css')
<link href="css/fonts/style.css" rel="stylesheet" type="text/css">
@endsection
@section('page-scripts')
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>