mirror of
https://github.com/exane/not-gwent-online
synced 2024-11-20 11:26:54 +00:00
styling searchMatch
This commit is contained in:
parent
9b4dbe39e2
commit
5972c72b67
@ -2,6 +2,13 @@ module.exports = {
|
||||
|
||||
template: require('../../views/modals/searchMatch.html'),
|
||||
|
||||
inherit: true
|
||||
inherit: true,
|
||||
|
||||
methods: {
|
||||
cancelMatch: function() {
|
||||
this.modal = false;
|
||||
// trigger match functions
|
||||
}
|
||||
}
|
||||
|
||||
};
|
@ -5,6 +5,8 @@
|
||||
<i class="icon-content-load"></i>
|
||||
<p class="modal-para">Search for Player</p>
|
||||
|
||||
<span class="btn-cancel" v-on="click: cancelMatch">Cancel</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -16,7 +16,7 @@
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(14,27,43,.8);
|
||||
background: rgba(14,27,43,.5);
|
||||
z-index: 10;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
@ -34,16 +34,18 @@
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
padding: 50px 0;
|
||||
margin: 15% 0 0 0;
|
||||
margin: 25vh 0 0 0;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.icon-content-load {
|
||||
background: url(../img/content-load.gif) no-repeat;
|
||||
float: left;
|
||||
//float: left;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
opacity: .9;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.modal-para {
|
||||
@ -53,5 +55,22 @@
|
||||
text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
|
||||
color: #8798ac;
|
||||
float: left;
|
||||
margin: 3px 0 0 20px;
|
||||
clear: both;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
//margin: 3px 0 0 20px;
|
||||
}
|
||||
|
||||
.btn-cancel {
|
||||
float: left;
|
||||
clear: both;
|
||||
margin: 50px 0 0 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: darken(#8798ac, 10%);
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
color: #8798ac;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user