mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 09:57:35 +01:00
22 lines
449 B
SCSS
22 lines
449 B
SCSS
// ===========================================================================
|
|
// ILLUSTRATIONS
|
|
|
|
|
|
|
|
$illustration-size: 4.5em !default;
|
|
|
|
|
|
|
|
.illustration { text-align: center; }
|
|
|
|
.circle {
|
|
display: inline-block;
|
|
margin: 0 auto;
|
|
@include border-radius($illustration-size);
|
|
padding: 0;
|
|
width: $illustration-size;
|
|
height: $illustration-size;
|
|
background: $callout-background-color;
|
|
line-height: $illustration-size;
|
|
text-align: center;
|
|
} |