@lucsoft/webgen
Version:
Collection of lucsofts Components
42 lines (37 loc) • 689 B
CSS
group {
display: grid;
grid-template-columns: 1fr 1fr;
position: relative;
transform: translate(-50%);
left: 50%;
width: 75%;
max-width: 80rem;
margin-top: 2.5rem;
margin-bottom: 2rem;
}
group text {
grid-column: 1 / 3;
margin: 1rem;
}
group text.left {
text-align: left;
}
group text.right{
text-align: right;
}
group text span.title {
display: block;
font-size: 2.5rem;
padding-bottom: 0.4rem;
font-weight: 200;
}
group text span.subtitle {
font-size: 1.35rem;
font-weight: 200;
}
group text.left span.subtitle {
padding-left: 0.7rem;
}
group text.right span.subtitle {
padding-right: 0.7rem;
}