2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Close icons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 19:01:42 +01:00
|
|
|
|
|
|
|
.close {
|
|
|
|
float: right;
|
2013-04-24 00:41:06 +02:00
|
|
|
font-size: (@font-size-base * 1.5);
|
2012-01-05 19:01:42 +01:00
|
|
|
font-weight: bold;
|
2013-04-24 00:41:06 +02:00
|
|
|
line-height: 1;
|
2012-12-20 07:02:57 +01:00
|
|
|
color: #000;
|
2012-01-05 19:01:42 +01:00
|
|
|
text-shadow: 0 1px 0 rgba(255,255,255,1);
|
2013-03-01 04:46:49 +01:00
|
|
|
.opacity(.2);
|
2013-04-09 19:43:37 +02:00
|
|
|
|
2013-01-02 23:39:21 +01:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2012-12-20 07:02:57 +01:00
|
|
|
color: #000;
|
2012-01-05 19:01:42 +01:00
|
|
|
text-decoration: none;
|
2012-01-09 08:14:07 +01:00
|
|
|
cursor: pointer;
|
2013-03-01 04:46:49 +01:00
|
|
|
.opacity(.5);
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
2012-03-26 05:41:59 +02:00
|
|
|
|
2013-07-02 02:32:07 +02: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& {
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
2013-04-23 09:30:22 +02:00
|
|
|
}
|