blog-source/themes/next/source/css/_common/components/post/post-followme.styl
2022-03-15 20:46:31 +08:00

42 lines
672 B
Stylus

.followme {
align-items: center;
background: var(--card-bg-color);
border-left: 3px solid $red;
color: $grey;
margin: 2em 0 1em 0;
padding: 1em 1.5em;
flex-column();
.social-list {
align-items: center;
display: flex;
flex-wrap: wrap;
.social-item {
margin: .5em 2em;
}
+tablet-mobile() {
.social-item {
margin: .5em .75em;
}
}
.social-link {
border: 0;
display:inline-block;
text-align: center;
.icon {
font-size: 1.75em;
height: 1.75em;
width: 1.75em;
}
.label {
display: block;
font-size: 14px;
}
}
}
}