mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-12 23:40:45 -07:00
25 lines
398 B
SCSS
25 lines
398 B
SCSS
.home-banner {
|
|
text-align: center;
|
|
border-bottom: 1px solid lighten($color-slate, 50%);
|
|
padding-bottom: $spacing-unit;
|
|
margin-bottom: $spacing-unit;
|
|
|
|
h1 {
|
|
// font-weight: bold;
|
|
font-size: 4em;
|
|
|
|
&:after {
|
|
content: '💧';
|
|
vertical-align: middle;
|
|
}
|
|
|
|
@include phone-and-up {
|
|
font-size: 5em;
|
|
}
|
|
}
|
|
|
|
p {
|
|
color: lighten($color-slate, 20%);
|
|
}
|
|
}
|