116 lines
1.5 KiB
SCSS
116 lines
1.5 KiB
SCSS
/**
|
|
* Reset some basic elements
|
|
*/
|
|
body, h1, h2, h3, h4, h5, h6,
|
|
p, blockquote, pre, hr,
|
|
dl, dd, ol, ul, figure {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Set `margin-bottom` to maintain vertycal rhythm
|
|
*/
|
|
h1, h2, h3, h4, h5, h6,
|
|
p, blockquote, pre,
|
|
ul, ol, dl, figure,
|
|
%vertical-rhythm {
|
|
margin-bottom: $spacing-unit / 2;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Images
|
|
*/
|
|
img {
|
|
max-width: 100%;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Figures
|
|
*/
|
|
figure > img {
|
|
display: block;
|
|
}
|
|
|
|
figcaption {
|
|
font-size: $small-font-size;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Lists
|
|
*/
|
|
ul, ol {
|
|
margin-left: $spacing-unit;
|
|
}
|
|
|
|
li {
|
|
> ul,
|
|
> ol {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Wrapper
|
|
*/
|
|
.wrapper {
|
|
max-width: -webkit-calc(800px - (#{$spacing-unit} * 2));
|
|
max-width: calc(800px - (#{$spacing-unit} * 2));
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
padding-right: $spacing-unit;
|
|
padding-left: $spacing-unit;
|
|
@extend %clearfix;
|
|
|
|
@include media-query($on-laptop) {
|
|
max-width: -webkit-calc(800px - (#{$spacing-unit}));
|
|
max-width: calc(800px - (#{$spacing-unit}));
|
|
padding-right: $spacing-unit / 2;
|
|
padding-left: $spacing-unit / 2;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Clearfix
|
|
*/
|
|
%clearfix {
|
|
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Icons
|
|
*/
|
|
.icon {
|
|
|
|
> svg {
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
vertical-align: middle;
|
|
|
|
path {
|
|
fill: $grey-color;
|
|
}
|
|
}
|
|
}
|