1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-11-20 11:26:54 +00:00

styling and quick match button

This commit is contained in:
devfake 2015-06-21 21:47:39 +02:00
parent 84b209da56
commit d020bb0d3a
5 changed files with 12 additions and 3 deletions

View File

@ -7,7 +7,7 @@
</nav>
<div class="chat">
blaa blaa
</div>
</section>

View File

@ -3,5 +3,7 @@
<li><a class="active" v-on="click: changeView('lobby')">Lobby</a></li>
<li><a v-on="click: changeView('deck-builder')">Deck Builder</a></li>
<li><a v-on="click: changeView('highscore')">Highscore</a></li>
<li class="sub-nav"><a>Quick Match</a></li>
</ul>
</nav>

View File

@ -10,6 +10,7 @@ body {
body {
width: 100%;
min-width: 1000px;
font-family: 'Titillium Web', sans-serif;
}

View File

@ -4,7 +4,7 @@
a {
font-size: 14px;
padding: 15px 15px;
padding: 15px 18px;
}
}

View File

@ -2,10 +2,12 @@ nav {
float: left;
margin: 30px 0 0 0;
clear: both;
width: 100%;
ul {
float: left;
margin: 0;
width: 100%;
}
li {
@ -18,7 +20,7 @@ nav {
font-size: 19px;
text-transform: uppercase;
font-weight: 300;
padding: 12px 25px;
padding: 12px 30px;
float: left;
cursor: pointer;
height: 55px;
@ -35,4 +37,8 @@ nav {
background: #080d14;
}
}
}
.sub-nav {
float: right;
}