mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 18:25:41 +03:00
24 lines
410 B
SCSS
24 lines
410 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-size: 4em;
|
|
|
|
// &:after {
|
|
// content: '\01F4A7'; // Water droplet emoji
|
|
// vertical-align: middle;
|
|
// }
|
|
|
|
@include phone-and-up {
|
|
font-size: 5em;
|
|
}
|
|
}
|
|
|
|
p {
|
|
color: lighten($color-slate, 20%);
|
|
}
|
|
}
|