hacks-guide-minimal-mistake.../_sass/site.scss

50 lines
901 B
SCSS
Raw Normal View History

2013-05-24 16:25:31 +02:00
/* Selection ============================================= */
::-moz-selection {
2014-07-31 19:09:32 +02:00
background-color: lighten($basecolor, 65%);
color: $basecolor;
2013-05-24 16:25:31 +02:00
text-shadow: none;
}
::selection {
2014-07-31 19:09:32 +02:00
background-color: lighten($basecolor, 65%);
color: $basecolor;
2013-05-24 16:25:31 +02:00
text-shadow: none;
}
/* Global Classes ======================================== */
.all-caps {
text-transform: uppercase;
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.image-pull-right {
float: right;
margin-top: 0;
2013-05-24 16:25:31 +02:00
}
.clearfix {
*zoom: 1;
&:before,
&:after {
display: table;
content: "";
}
&:after {
clear: both;
}
}
.unstyled-list {
list-style: none;
margin-left: 0;
padding-left: 0;
li {
list-style-type: none;
}
}
/* Global Transition ==================================== */
b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a {
2014-07-31 19:09:32 +02:00
@include transition(all .2s ease);
2013-05-24 16:25:31 +02:00
}