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

styling and set server routes

This commit is contained in:
devfake 2015-06-22 19:35:08 +02:00
parent 513efc2116
commit 1fb76ff494
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');
}