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

33 lines
678 B
Sass
Raw Normal View History

@import "app/styles/bootstrap/mixins"
@import "app/styles/mixins"
2014-01-03 13:32:13 -05:00
.spell-palette-entry-view
display: block
padding: 0px 4px
2014-01-03 13:32:13 -05:00
font-family: Menlo, Monaco, Consolas, "Courier New", monospace
font-size: 12px
border: 1px solid transparent
cursor: pointer
2014-02-23 18:10:03 -05:00
@user-select(none)
&:hover
2014-02-23 18:10:03 -05:00
border: 1px solid #000000
&.pinned
2014-02-23 18:10:03 -05:00
background-color: darken(#FFFFFF, 25%)
2014-01-03 13:32:13 -05:00
// Pulling these colors from the most relevant textmate-theme classes
&.function
2014-02-23 18:10:03 -05:00
color: #0066FF
2014-01-03 13:32:13 -05:00
&.object
color: rgb(6, 150, 14)
&.string
color: rgb(3, 106, 7)
&.number
color: rgb(0, 0, 205)
&.boolean
color: rgb(88, 92, 246)
&.undefined
color: rgb(197, 6, 11)