tps-site/assets/css/components/3-page/about.scss

64 lines
1.6 KiB
SCSS

// About ================
.about.page {
padding: 50px 0 100px;
.about {
&_txt {
font-weight: 400;
font-size: 16px;
line-height: 36px;
color: #000000;
margin-bottom: 30px;
}
&_list {
margin-bottom: 30px;
position: relative;
li {
margin-bottom: 15px;
padding-left: 70px;
position: relative;
&::before {
content: '';
position: absolute;
top: 15px;
left: 25px;
background: url("../images/svg/circle.svg") no-repeat center;
background-size: contain;
width: 20px;
height: 20px;
}
&::after {
content: '';
position: absolute;
top: 27px;
left: 34px;
height: calc(100% + 10px);
width: 1px;
border-left: 2px dashed #C4DAF0;
border-right: none;
border-top: none;
border-bottom: none;
z-index: -1;
}
&:last-child {
&::after {
display: none;
}
}
p {
font-weight: 400;
font-size: 16px;
line-height: 50px;
}
}
}
}
}