mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
start change modal
This commit is contained in:
parent
0dba058a76
commit
4b26af7db1
@ -35,4 +35,42 @@ body {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-family: 'Titillium Web', sans-serif;
|
font-family: 'Titillium Web', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card,
|
||||||
|
.card-small-small {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bbm-wrapper {
|
||||||
|
background: rgba(6, 13, 22, 0.9);
|
||||||
|
padding: 7% 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bbm-modal {
|
||||||
|
background: transparent;
|
||||||
|
box-shadow: none;
|
||||||
|
max-width: 100%;
|
||||||
|
border-radius: 0;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-sub {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bbm-modal__topbar {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bbm-modal__title {
|
||||||
|
font-size: 26px;
|
||||||
|
color: #8798ac;
|
||||||
|
margin: 0 0 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bbm-modal__section {
|
||||||
|
position: absolute;
|
||||||
|
transform: translate(-50%, 0px);
|
||||||
|
left: 50%;
|
||||||
}
|
}
|
@ -1,45 +0,0 @@
|
|||||||
<style>
|
|
||||||
body {
|
|
||||||
background: url(http://80.240.132.120/test/landing-bg.jpg) #162232 center top no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
</style>
|
|
||||||
qwerqwer
|
|
||||||
<div class="col-xs-12">
|
|
||||||
<div class="panel panel-default">
|
|
||||||
<div class="panel-heading">Gwent
|
|
||||||
{{#if serverOffline}}
|
|
||||||
<span class="pull-right">Server Status: <span class="label label-danger">Offline</span></span>
|
|
||||||
{{else}}
|
|
||||||
<span class="pull-right">Player online: <span class="nr-player-online">0</span> | Server Status: <span class="label label-success">Online</span></span>
|
|
||||||
{{/if}}
|
|
||||||
</div>
|
|
||||||
<div class="panel-body">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-xs-12">
|
|
||||||
<input type="text" class="name-input" value="{{name}}">
|
|
||||||
<select id="deckChoice">
|
|
||||||
<option value="random">Deck: Random</option>
|
|
||||||
<option value="northern">Deck: Northern Realms</option>
|
|
||||||
<option value="scoiatael">Deck: Scoia'tael</option>
|
|
||||||
<option value="monster">Deck: Monster</option>
|
|
||||||
<option value="nilfgaardian">Deck: Nilfgaardian</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-xs-12">
|
|
||||||
<button type="button" class="btn btn-primary startMatchmaking"{{#if inMatchmakerQueue}} disabled{{/if}}>
|
|
||||||
Search Opponent
|
|
||||||
{{!#if inMatchmakerQueue}}
|
|
||||||
<i class="image-gif-loader pull-right" style="display: none"></i>
|
|
||||||
{{!/if}}
|
|
||||||
</button>
|
|
||||||
<!--<button type="button" class="btn btn-success note">debug note</button>-->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,11 +1,9 @@
|
|||||||
<div class="bbm-modal__topbar">
|
<div class="bbm-modal__topbar">
|
||||||
<h3 class="bbm-modal__title">Choose up to 2 cards you wish to redraw!</h3>
|
<h3 class="bbm-modal__title">Choose up to 2 cards you wish to redraw!</h3>
|
||||||
|
<span class="btn-sub bbm-close">CLOSE</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="bbm-modal__section">
|
<div class="bbm-modal__section">
|
||||||
{{#each handCards as |val key|}}
|
{{#each handCards as |val key|}}
|
||||||
{{>card val}}
|
{{>card val}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
|
||||||
<div class="bbm-modal__bottombar">
|
|
||||||
<div class="bbm-button bbm-close">close</div>
|
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue
Block a user