codecombat/app/styles/bootstrap/_close.scss

36 lines
736 B
SCSS
Raw Normal View History

2014-01-03 13:32:13 -05:00
//
// Close icons
// --------------------------------------------------
.close {
float: right;
font-size: ($font-size-base * 1.5);
font-weight: $close-font-weight;
line-height: 1;
color: $close-color;
text-shadow: $close-text-shadow;
@include opacity(.2);
2014-01-03 13:32:13 -05:00
&:hover,
&:focus {
color: $close-color;
2014-01-03 13:32:13 -05:00
text-decoration: none;
cursor: pointer;
@include opacity(.5);
2014-01-03 13:32:13 -05:00
}
// [converter] extracted button& to button.close
2014-01-03 13:32:13 -05:00
}
// Additional properties for button version
// iOS requires the button element instead of an anchor tag.
// If you want the anchor version, it requires `href="#"`.
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}