hacks-guide-minimal-mistake.../_assets/css/_site.scss

64 lines
1.1 KiB
SCSS
Raw Normal View History

2015-01-20 21:25:57 +01:00
/* ==========================================================================
Site wide styles
========================================================================== */
2015-04-17 12:43:36 +02:00
/*
2015-01-20 21:25:57 +01:00
Selection
========================================================================== */
2015-04-17 12:43:36 +02:00
::-moz-selection {
2016-03-10 17:13:54 +01:00
background-color: mix(#fff, $base-color, 65%);
color: $base-color;
2015-04-17 12:43:36 +02:00
text-shadow: none;
}
::selection {
2016-03-10 17:13:54 +01:00
background-color: mix(#fff, $base-color, 65%);
color: $base-color;
2015-04-17 12:43:36 +02:00
text-shadow: none;
2013-05-24 16:25:31 +02:00
}
2015-04-17 12:43:36 +02:00
/*
2015-01-20 21:25:57 +01:00
Global classes
========================================================================== */
/* Capitalize */
2013-05-24 16:25:31 +02:00
.all-caps {
text-transform: uppercase;
}
2015-01-20 21:25:57 +01:00
/* Float left */
2013-05-24 16:25:31 +02:00
.pull-left {
float: left;
}
2015-01-20 21:25:57 +01:00
/* Float right */
2013-05-24 16:25:31 +02:00
.pull-right {
float: right;
}
.image-pull-right {
float: right;
margin-top: 0;
2013-05-24 16:25:31 +02:00
}
2015-01-20 21:25:57 +01:00
/* Clearfix */
2013-05-24 16:25:31 +02:00
.clearfix {
*zoom: 1;
&:before,
&:after {
display: table;
content: "";
}
&:after {
clear: both;
}
}
2015-01-20 21:25:57 +01:00
/* Remove bullets and indentation from list */
2013-05-24 16:25:31 +02:00
.unstyled-list {
list-style: none;
margin-left: 0;
padding-left: 0;
li {
list-style-type: none;
}
2016-03-10 17:13:54 +01:00
}