This commit is contained in:
alexandre-pereira 2015-03-18 11:44:19 +01:00
parent 5a3ff22564
commit 08bc1a56e5
6 changed files with 13 additions and 7 deletions

View File

@ -7,7 +7,7 @@
html, body { html, body {
font-family: 'Oswald', sans-serif; font-family: 'Oswald', sans-serif;
background: #ebebeb; background: #ebebeb;
background: url('../imgs/bg.jpg') no-repeat bottom center fixed; background: url('../imgs/bg.png') no-repeat bottom center fixed;
background-size: cover; background-size: cover;
font-weight:300; font-weight:300;
@ -160,10 +160,16 @@ button:active {
height:100%; height:100%;
} }
img#imgRef { #imgRef {
border-radius:50%; height:100px;width:100px;margin:40px; cursor:pointer; display: inline-block;
border-radius:50%;
height:100px;
width:100px;
margin:40px;
cursor:pointer;
background-position: center center;
background-size:cover;
} }
img#imgRef:active { #imgRef:active {
cursor:wait; cursor:wait;
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 209 KiB

After

Width:  |  Height:  |  Size: 9.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 236 KiB

View File

@ -4,11 +4,11 @@
@section('content') @section('content')
<div style="text-align:center"> <div style="text-align:center">
<img id="imgRef" src="{{ $ref -> image }}"><br> <div id="imgRef" style="background-image:url('{{ $ref -> image }}');"></div><br>
<div class="game" onclick="location.href='{{ URL::to('memo') }}'"><img src="imgs/memo/memo2.png"></div> <div class="game" onclick="location.href='{{ URL::to('memo') }}'"><img src="imgs/memo/memo2.png"></div>
<div class="game" onclick="location.href='{{ URL::to('puzzle') }}'"><img src="imgs/puzzle/puzzle.png"></div> <div class="game" onclick="location.href='{{ URL::to('puzzle') }}'"><img src="imgs/puzzle/puzzle.png"></div>
</div> </div>
@endsection @endsection