2014-07-19 13:33:48 -05:00
|
|
|
//
|
|
|
|
// Styles
|
|
|
|
// --------------------------------------------------
|
2014-05-21 12:17:39 -05:00
|
|
|
|
|
|
|
@mixin baseline {
|
|
|
|
margin: 1.6em 0;
|
2014-08-04 10:57:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// User select
|
|
|
|
// For selecting text on the page
|
|
|
|
|
|
|
|
@mixin user-select($select) {
|
|
|
|
-webkit-user-select: $select;
|
|
|
|
-moz-user-select: $select;
|
|
|
|
-ms-user-select: $select; // IE10+
|
|
|
|
user-select: $select;
|
|
|
|
}
|
|
|
|
|
|
|
|
// WebKit-style focus
|
|
|
|
|
|
|
|
@mixin tab-focus() {
|
|
|
|
// Default
|
|
|
|
outline: thin dotted;
|
|
|
|
// WebKit
|
2014-08-04 11:24:41 -05:00
|
|
|
outline: 0px auto -webkit-focus-ring-color;
|
2014-08-04 10:57:33 -05:00
|
|
|
outline-offset: -2px;
|
|
|
|
}
|