mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
89 lines
1.8 KiB
Sass
89 lines
1.8 KiB
Sass
@import "app/styles/mixins"
|
|
@import "app/styles/bootstrap/variables"
|
|
|
|
$maxHeroPortraitSize: 100px
|
|
$minHeroPortraitSize: 50px
|
|
|
|
$heroCanvasHeight: 330px
|
|
|
|
#choose-hero-view
|
|
|
|
#hero-carousel
|
|
margin: 0 auto 20px auto
|
|
|
|
.carousel-indicator-container
|
|
height: $maxHeroPortraitSize
|
|
text-align: center
|
|
width: 100%
|
|
margin-bottom: 10px
|
|
margin-top: 10px
|
|
position: relative
|
|
z-index: 1
|
|
|
|
.carousel-indicators
|
|
position: static
|
|
height: $maxHeroPortraitSize
|
|
width: 100%
|
|
margin-left: 0
|
|
background-repeat: no-repeat
|
|
|
|
.hero-indicator
|
|
width: $maxHeroPortraitSize
|
|
height: $maxHeroPortraitSize
|
|
margin: 0px 3px
|
|
background-size: contain
|
|
@include transition(0.5s ease)
|
|
border: 2px solid black
|
|
border-radius: 2px
|
|
position: relative
|
|
|
|
&.active
|
|
border-color: gold
|
|
|
|
&.locked
|
|
@include opacity(0.6)
|
|
|
|
.hero-item
|
|
|
|
&.locked
|
|
@include opacity(0.6)
|
|
|
|
canvas, .hero-stats
|
|
width: 45%
|
|
height: $heroCanvasHeight
|
|
float: left
|
|
|
|
canvas
|
|
margin-left: 5%
|
|
|
|
.hero-stats
|
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6)
|
|
font-size: 24px
|
|
|
|
.carousel-control.left
|
|
border-top-left-radius: 10px
|
|
border-bottom-left-radius: 10px
|
|
|
|
.carousel-control.right
|
|
border-top-right-radius: 10px
|
|
border-bottom-right-radius: 10px
|
|
|
|
.carousel-control
|
|
height: 75%
|
|
top: 25%
|
|
width: 10%
|
|
|
|
.select-group
|
|
display: block
|
|
min-height: 20px
|
|
margin-top: 10px
|
|
margin-bottom: 10px
|
|
padding-left: 20px
|
|
vertical-align: middle
|
|
|
|
label
|
|
margin-right: 20px
|
|
margin-bottom: 0
|
|
|
|
select
|
|
font-size: 18px
|