mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 09:57:35 +01:00
18 lines
399 B
SCSS
18 lines
399 B
SCSS
|
// ===========================================================================
|
||
|
// ILLUSTRATIONS
|
||
|
|
||
|
|
||
|
|
||
|
$illustration-size: 4.5em;
|
||
|
|
||
|
.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;
|
||
|
}
|