mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 02:17:36 +01:00
a07743bbb4
* Moved CSS, JS, Images into an assets folder * Adjusted the file structure a bit for CSS, JS, Images. * Added a fonts folder * Cleaned up the config a bit so it's easier to read through * Added some KSS placeholders to tinker with a bit * Added zepto.js so we can be a bit more friendly on mobile devices/modern browsers * Added some basic responsive breakpoints * Added a scaffold.css and theme.css so we can separate out layout pieces from the theme. This will let us retheme the site easier, or have multiple themes if we're feeling frisky * Removed some HTML5 boilerplate pieces that we don't need * Added some basic structural css partials
42 lines
555 B
SCSS
42 lines
555 B
SCSS
// ----------------------------------------------------
|
|
// utility classes
|
|
// ----------------------------------------------------
|
|
|
|
// Quick floats
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
|
|
// Toggling content
|
|
.hide {
|
|
display: none;
|
|
}
|
|
.show {
|
|
display: block;
|
|
}
|
|
|
|
// Visibility
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.visible-phone{}
|
|
.visible-tablet{}
|
|
.visible-desktop{}
|
|
|
|
.hidden-phone{}
|
|
.hidden-tablet{}
|
|
.hidden-desktop{}
|
|
|
|
// clearfix
|
|
.clearfix {
|
|
@include clearfix();
|
|
}
|
|
|
|
// image replacement
|
|
.hide-text {
|
|
@include hide-text();
|
|
} |