2014-09-21 16:26:56 -04:00
|
|
|
@import "app/styles/mixins"
|
|
|
|
|
2014-08-08 14:36:41 -04:00
|
|
|
#game-menu-modal
|
2014-11-07 11:54:22 -05:00
|
|
|
|
|
|
|
//- Clear modal defaults
|
|
|
|
|
|
|
|
.modal-dialog
|
|
|
|
width: 820px
|
|
|
|
height: 570px
|
|
|
|
padding: 0
|
|
|
|
background: none
|
|
|
|
position: relative
|
|
|
|
top: 40px
|
|
|
|
|
|
|
|
|
|
|
|
//- Background
|
2014-09-04 13:03:34 -04:00
|
|
|
|
2014-11-07 11:54:22 -05:00
|
|
|
#game-menu-background
|
2014-09-04 13:03:34 -04:00
|
|
|
position: absolute
|
2014-11-07 11:54:22 -05:00
|
|
|
top: -146px
|
|
|
|
left: -3px
|
2014-09-21 16:26:56 -04:00
|
|
|
|
2014-11-18 16:57:20 -05:00
|
|
|
|
|
|
|
//- Close modal button
|
|
|
|
|
|
|
|
#close-modal
|
|
|
|
position: absolute
|
|
|
|
left: 769px
|
|
|
|
top: -5px
|
|
|
|
width: 60px
|
|
|
|
height: 60px
|
|
|
|
color: white
|
|
|
|
text-align: center
|
|
|
|
font-size: 30px
|
|
|
|
padding-top: 17px
|
|
|
|
cursor: pointer
|
|
|
|
z-index: 2
|
|
|
|
@include rotate(-3deg)
|
2014-09-21 16:26:56 -04:00
|
|
|
|
2014-11-18 16:57:20 -05:00
|
|
|
&:hover
|
|
|
|
color: yellow
|
|
|
|
|
|
|
|
|
2014-11-07 11:54:22 -05:00
|
|
|
//- Nav bar
|
2014-09-21 16:26:56 -04:00
|
|
|
|
2014-11-07 11:54:22 -05:00
|
|
|
#game-menu-nav
|
2014-09-21 16:26:56 -04:00
|
|
|
position: absolute
|
2014-11-07 11:54:22 -05:00
|
|
|
top: 53px
|
|
|
|
left: 42px
|
|
|
|
width: 178px
|
2014-09-21 16:26:56 -04:00
|
|
|
|
2014-11-07 11:54:22 -05:00
|
|
|
li
|
|
|
|
background: url(/images/pages/play/modal/menu-tab.png)
|
|
|
|
padding: 5px
|
|
|
|
margin: -5px 0
|
|
|
|
height: 80px
|
|
|
|
padding: 0
|
|
|
|
|
|
|
|
&.active
|
|
|
|
background: url(/images/pages/play/modal/menu-tab-selected.png)
|
|
|
|
width: 197px
|
2014-09-21 23:19:27 -04:00
|
|
|
|
2014-10-27 12:27:57 -04:00
|
|
|
a
|
2014-11-07 11:54:22 -05:00
|
|
|
font-size: 18px
|
|
|
|
line-height: 50px
|
|
|
|
background: none
|
|
|
|
color: rgb(195,153,124)
|
|
|
|
font-weight: bold
|
|
|
|
padding: 14px 20px
|
|
|
|
font-family: Open Sans Condensed
|
|
|
|
text-transform: uppercase
|
|
|
|
|
|
|
|
.glyphicon
|
|
|
|
margin-right: 6px
|
2014-08-08 18:56:53 -04:00
|
|
|
|
2014-09-21 16:26:56 -04:00
|
|
|
|
2014-11-07 11:54:22 -05:00
|
|
|
//- Tab panels
|
|
|
|
|
|
|
|
.game-menu-tab-content
|
|
|
|
position: absolute
|
|
|
|
left: 219px
|
|
|
|
top: 21px
|
|
|
|
width: 571px
|
2014-11-09 22:39:09 -05:00
|
|
|
height: 514px
|
2014-11-07 11:54:22 -05:00
|
|
|
padding: 50px
|
2014-11-09 22:39:09 -05:00
|
|
|
overflow-y: scroll
|
2014-11-23 13:21:58 -05:00
|
|
|
|
|
|
|
::-webkit-scrollbar
|
|
|
|
// So that the scrollbar doesn't go on top of the close button.
|
|
|
|
// Wish we could easily do this for Firefox.
|
|
|
|
display: none
|
|
|
|
|