mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 01:47:44 +01:00
38 lines
582 B
SCSS
38 lines
582 B
SCSS
// ===========================================================================
|
|
// MESSAGES
|
|
|
|
|
|
|
|
.release-information {
|
|
padding: .5em 0;
|
|
|
|
.main & .container {
|
|
padding: {
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
p,
|
|
ul { @include font-size($font-size, $line-height-alt); }
|
|
|
|
strong {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@include at-breakpoint($break-iPhone) {
|
|
ul { @extend %horizontal-list-iPhone; }
|
|
}
|
|
|
|
@include at-breakpoint($break-iPad) {
|
|
padding: 1em 0;
|
|
|
|
p,
|
|
ul {
|
|
@include float-left;
|
|
padding: 0;
|
|
}
|
|
|
|
p { margin-right: 2em; }
|
|
}
|
|
} |