1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-08-13 13:07:32 +00:00

much stuff

This commit is contained in:
exane
2015-06-18 15:06:13 +02:00
parent ef7d9aacf9
commit 6667db814c
17 changed files with 522 additions and 152 deletions

@@ -0,0 +1,25 @@
/* Modal positioning */
.bbm-wrapper
box-sizing: border-box
position: fixed
left: 0
top: 0
width: 100%
height: 100%
z-index: 100
padding: 50px 10px
*
box-sizing: border-box
overflow: auto
.bbm-modal
border-radius: 3px
margin: auto
width: auto
max-width: 550px
.bbm-views
width: 100%
box-sizing: border-box

@@ -0,0 +1,130 @@
.bbm-wrapper
background: rgba(0,0,0,.75)
-webkit-transition: background-color .3s
.bbm-modal
background: white
box-shadow: 0 0px 6px rgba(0,0,0,.6), 0 1px 2px rgba(0,0,0,.9)
/* BLOCKS */
.bbm-modal__topbar,
.bbm-modal__bottombar
padding: 0 30px
.bbm-modal__topbar
border-bottom: 1px solid rgba(0,0,0,.1)
margin:
bottom: 30px
>ul
list-style: none
text-align: center
padding: 0
margin: 0
.bbm-modal__tab
display: inline-block
padding: 15px 10px
a
font:
size: 16px
weight: bold
color: #999
&:hover,
&.active
color: #222
.bbm-modal__title
padding: 20px 0 19px
margin: 0
font:
weight: normal
size: 22px
line-height: 1em
color: #312D3A
.bbm-modal__section
padding: 0 30px
margin-top: 0px
font:
size: 16px
line-height: 26px
color: #575656
p
font:
size: 16px
line-height: 26px
color: #575656
&:last-child
padding: 0
margin-bottom: 0
a
color: #FF643C
h3
margin: 0
font-size: 20px
line-height: 1em
.bbm-modal__bottombar
border-top: 1px solid rgba(0,0,0,.1)
padding: 18px
text-align: right
margin-top: 30px
/* MODULES */
.bbm-group
content: ""
display: table
clear: both
.bbm-button
display: inline-block
color: rgba(49,45,58,.8)
text-decoration: none
font:
size: 14px
weight: 500
position: relative
line-height: 1em
padding: 10px 14px
border-radius: 3px
background: #FCFCFC
cursor: default
background-image: -o-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.15) 100%)
background-image: -moz-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.15) 100%)
background-image: -webkit-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.15) 100%)
background-image: -ms-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.15) 100%)
background-image: linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.15) 100%)
-moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.10), inset 0px 0px 0px 1px rgba(0,0,0,0.20)
-webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.10), inset 0px 0px 0px 1px rgba(0,0,0,0.20)
box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.10), inset 0px 0px 0px 1px rgba(0,0,0,0.20)
&.inactive
opacity: .5
pointer-events: none
&:active
background-image: -o-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.25) 100%)
background-image: -moz-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.25) 100%)
background-image: -webkit-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.25) 100%)
background-image: -ms-linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.25) 100%)
background-image: linear-gradient(rgba(70,30,170,0) 0%, rgba(65,61,75,.25) 100%)
-moz-box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.50), inset 0px 0px 0px 1px rgba(0,0,0,0.20)
-webkit-box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.50), inset 0px 0px 0px 1px rgba(0,0,0,0.20)
box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.50), inset 0px 0px 0px 1px rgba(0,0,0,0.20)
/* ANIMATIONS */
/* Open modal */

45
public/scss/_style.sass Normal file

@@ -0,0 +1,45 @@
// Custom styling here
a
text-decoration: none
font-style: normal
// Add icons to tabs
.bbm-modal__tab
padding: 0
a
display: block
padding:
top: 55px
bottom: 10px
left: 20px
right: 20px
position: relative
font:
size: 13px
&:before
position: absolute
content: ""
background: url(img/tab-icons.png)
left: 50%
top: 10px
margin:
left: -20px
width: 40px
height: 40px
opacity: .5
&.active
opacity: 1
&:before
opacity: 1
&:last-child
margin-left: -5px
a
&:before
background-position: -40px

@@ -1,3 +1,7 @@
//@import "style";
@import "backbone.modal";
@import "backbone.modal.theme";
$height: 600px;
$game-height: 800px;
@@ -91,12 +95,22 @@ $game-height: 800px;
margin-left: 30px;
cursor: default;
}
&.disabled {
opacity: 0.5;
}
&.activeCard {
position: relative;
z-index: 11;
transform: scale(1.5,1.5) !important;
}
}
.card-preview {
position: absolute;/*
display: none;*/
z-index: 10;
z-index: 110;
}
i {