You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
894 B
48 lines
894 B
.panel {
|
|
padding-top: em(59);
|
|
padding-bottom: em(59);
|
|
text-align: center;
|
|
color: #131720;
|
|
|
|
.panel__wrapper {
|
|
overflow: visible;
|
|
}
|
|
|
|
h2 {
|
|
font-size: em(36);
|
|
margin-bottom: em(15);
|
|
}
|
|
|
|
.panel__desc {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.panel__desc__word {
|
|
font-size: em(18);
|
|
position: relative;
|
|
color: #4B4B4B;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: em(-100, 18);
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: em(83);
|
|
height: 2px;
|
|
background-color: rgba(181, 181, 181, 1);
|
|
}
|
|
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
right: em(-100, 18);
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: em(83, 18);
|
|
height: 1px;
|
|
background-color: rgba(181, 181, 181, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|