17 lines
415 B
CSS
17 lines
415 B
CSS
.b_make_poster_order {
|
|
--title-font-size: 44px;
|
|
--title-font-weight: 700;
|
|
--title-margin-bottom: 60px;
|
|
|
|
@media (max-width: 992px) {
|
|
--title-font-size: 32px;
|
|
}
|
|
|
|
.make_poster_order_title{
|
|
width: 100%;
|
|
font-size: var(--title-font-size);
|
|
font-weight: var(--title-font-weight);
|
|
margin-bottom: var(--title-margin-bottom);
|
|
text-align: center;
|
|
}
|
|
} |