krautworld-website_kraut.world/assets/sass/components/_section.scss

58 lines
939 B
SCSS
Raw Permalink Normal View History

2022-05-09 11:22:27 +00:00
///
/// Prototype by Pixelarity
/// pixelarity.com | hello@pixelarity.com
/// License: pixelarity.com/license
///
/* Section/Article */
section, article {
&.special {
text-align: center;
}
}
header {
p {
position: relative;
margin: 0 0 _size(element-margin) 0;
}
&.major {
text-align: center;
margin: 0 0 (_size(element-margin) * 1.5) 0;
> :last-child {
margin-bottom: 0;
}
}
@include breakpoint('<=medium') {
br {
display: none;
}
}
@include breakpoint('<=small') {
&.major {
margin: 0 0 _size(element-margin) 0;
}
}
}
footer {
&.major {
text-align: center;
margin: (_size(element-margin) * 1.5) 0 _size(element-margin) 0;
> :last-child {
margin-bottom: 0;
}
}
@include breakpoint('<=small') {
&.major {
margin: _size(element-margin) 0 _size(element-margin) 0;
}
}
}