1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00

Merge branch 'master' of github.com:exane/gwent-online

This commit is contained in:
exane 2015-06-22 20:19:24 +02:00
commit e5943b827b
3 changed files with 15 additions and 6 deletions

View File

@ -73,12 +73,12 @@
margin: 50px 0 0 0; margin: 50px 0 0 0;
width: 100%; width: 100%;
text-align: center; text-align: center;
color: darken(#8798ac, 10%); color: darken(#8798ac, 30%);
cursor: pointer; cursor: pointer;
@include transition(); @include transition();
&:hover { &:hover {
color: #fff; color: #8798ac;
} }
} }

View File

@ -25,7 +25,7 @@ nav {
cursor: pointer; cursor: pointer;
height: 55px; height: 55px;
@include transition(color); @include transition();
&:hover { &:hover {
color: #c5cfda; color: #c5cfda;

View File

@ -1,11 +1,15 @@
<?php <?php
get('/lobby', function() { get('/lobby', function() {
return view('app')->withSection('inner'); return innerView();
}); });
get('/deck-builder', function() { get('/deck-builder', function() {
return view('app')->withSection('inner'); return innerView();
});
get('/highscore', function() {
return innerView();
}); });
get('/', function() { get('/', function() {
@ -15,3 +19,8 @@
return view('app')->withSection('landing'); return view('app')->withSection('landing');
}); });
function innerView()
{
return view('app')->withSection('inner');
}