codecombat/app/styles/play/level/tome/problem_alert.sass

80 lines
1.8 KiB
Sass
Raw Normal View History

@import "app/styles/mixins"
@import "app/styles/bootstrap/variables"
2014-01-03 13:32:13 -05:00
#problem-alert-view.problem-alert
2014-01-03 13:32:13 -05:00
z-index: 10
position: absolute
// Position these at the end of the spell editor, right above the spell toolbar.
top: 45px
right: 500px
background: transparent
border: 1px solid transparent
padding: 0
font-size: 18px
2014-01-03 13:32:13 -05:00
text-shadow: none
color: white
word-wrap: break-word
border-style: solid
border-image: url(/images/level/code_editor_error_background.png) 16 20 fill round
border-width: 16px 20px
2014-01-03 13:32:13 -05:00
2014-11-08 01:46:12 -05:00
// Jiggle animation
+keyframes(jiggle)
2014-11-08 01:46:12 -05:00
0%
transform: rotate(0deg)
25%
transform: rotate(1deg)
50%
transform: rotate(0deg)
75%
transform: rotate(-1deg)
100%
transform: rotate(0deg)
&.jiggling
@include animation(jiggle .3s infinite)
2014-11-08 01:46:12 -05:00
&.no-hint
// Since it's probably only one line, let's make it not look weird by being tiny.
padding: 7px
.problem-alert-title
color: white
border-bottom: 1px solid white
2014-01-03 13:32:13 -05:00
.close
@include opacity(0.80)
2014-01-03 13:32:13 -05:00
text-shadow: none
cursor: pointer
color: white
float: right
&:hover, &:focus
@include opacity(1)
.problem-subtitle
font-size: 80%
2014-01-03 13:32:13 -05:00
//&.alert-error
&.alert-warning
border-image-source: url(/images/level/code_editor_warning_background.png)
2014-01-03 13:32:13 -05:00
&.alert-info
border-image-source: url(/images/level/code_editor_info_background.png)
html.no-borderimage
.problem-alert
border-width: 0
border-image: none
background: transparent url(/images/level/code_editor_error_background.png) no-repeat
background-size: 100% 100%
2014-07-23 08:38:12 -04:00
padding: 18px 35px 18px 14px
&.alert-warning
background-image: url(/images/level/code_editor_warning_background.png)
&.alert-info
background-image: url(/images/level/code_editor_info_background.png)