sass-site/source/assets/css/components/_callouts.scss
Natalie Weizenbaum 4b6b15b1ab
Add special styling for intro pages (#316)
This just bumps up the font size a bit, to help emphasize that these
pages are special and make them look less bare.

Closes #276
2019-04-04 23:55:07 -07:00

56 lines
1008 B
SCSS

.sl-c-callout {
margin: 1.5rem 0;
padding: 1.5rem 1rem;
background: lighten($sl-color--pale-sky, 50%);
border-radius: 2px;
&--warning {
background: lighten($sl-color--hopbush, 36%);
border: 1px solid lighten($sl-color--hopbush, 27%);
}
&--fun-fact {
background: lighten($sl-color--patina, 43%);
border: 1px solid lighten($sl-color--patina, 32%);
}
&--function {
padding: {
top: 0;
bottom: .25rem;
};
.signature {
// Make sure permalinks are visible.
overflow: visible;
margin: {
right: -1rem;
left: -1rem;
};
}
}
&--impl-status {
font-size: 0.8em;
margin-top: -1rem;
padding: 0.8rem;
.sl-c-callout & {
background: lighten($sl-color--pale-sky, 53%);
}
}
> *:first-child { margin-top: 0; }
> *:last-child { margin-bottom: 0; }
}
@include sl-breakpoint--medium {
.sl-l-container--overview {
font-size: 1.25rem;
.sl-c-callout { font-size: 1rem; }
}
}