guild_front/src/components/Description/Description.module.css

139 lines
2.5 KiB
CSS
Raw Normal View History

2021-05-31 18:23:25 +03:00
.description {
margin-top: 120px;
margin-bottom: 120px;
}
.description__wrapper {
2021-06-03 17:15:22 +03:00
border: 1px solid #efefef;
background-color: #fdfdfd;
2021-05-31 18:23:25 +03:00
padding-top: 60px;
border-bottom: none;
}
.description__img {
margin-left: 40px;
margin-top: 16px;
}
.description__title {
font-family: 'GT Eesti Pro Display';
font-size: 2.5em;
font-weight: 700;
font-style: normal;
letter-spacing: normal;
line-height: 36px;
text-align: left;
margin-bottom: 10px;
}
.description__text {
font-family: 'GT Eesti Pro Display';
2021-06-03 17:15:22 +03:00
font-size: 1.7em;
font-weight: 100;
2021-05-31 18:23:25 +03:00
font-style: normal;
letter-spacing: normal;
line-height: 24px;
text-align: left;
line-height: 28px;
}
.description__button {
width: 280px;
2021-06-03 17:15:22 +03:00
height: 60px;
2021-05-31 18:23:25 +03:00
border-radius: 100px;
2021-06-03 17:15:22 +03:00
background-color: #73c141;
2021-05-31 18:23:25 +03:00
border: none;
color: #ffffff;
font-family: 'Muller Extra Bold';
2021-06-03 17:15:22 +03:00
font-size: 1.6em;
2021-05-31 18:23:25 +03:00
font-weight: 600;
2021-06-03 17:15:22 +03:00
line-height: normal;
2021-05-31 18:23:25 +03:00
font-style: normal;
2021-06-03 17:15:22 +03:00
letter-spacing: 0.8px;
2021-05-31 18:23:25 +03:00
text-align: center;
margin-top: 74px;
2021-06-03 17:15:22 +03:00
margin-left: 30px;
2021-05-31 18:23:25 +03:00
}
.description__sp {
display: block;
font-family: 'GT Eesti Pro Display';
2021-06-03 17:15:22 +03:00
font-size: 1.7em;
font-weight: 400;
2021-05-31 18:23:25 +03:00
font-style: normal;
letter-spacing: normal;
2021-06-03 17:15:22 +03:00
text-align: left;
line-height: 36px;
2021-05-31 18:23:25 +03:00
margin-top: 20px;
}
.description__rectangle {
display: block;
2021-06-03 17:15:22 +03:00
margin: 50px auto;
2021-05-31 18:23:25 +03:00
}
.description__footer {
display: flex;
justify-content: center;
margin-top: 60px;
}
.description__footer__btn > button {
2021-06-03 17:15:22 +03:00
width: 200px;
height: 48px;
2021-05-31 18:23:25 +03:00
border-radius: 100px;
2021-06-03 17:15:22 +03:00
border: 1px solid #73c141;
2021-05-31 18:23:25 +03:00
background-color: white;
margin-right: 60px;
color: #a0a0a0;
font-family: 'GT Eesti Pro Display';
font-size: 1.8em;
2021-06-03 17:15:22 +03:00
font-weight: 400;
2021-05-31 18:23:25 +03:00
font-style: normal;
2021-06-03 17:15:22 +03:00
letter-spacing: 0.6px;
2021-05-31 18:23:25 +03:00
line-height: normal;
text-align: center;
}
.description__footer__box {
display: flex;
align-items: center;
}
.description__footer__sp {
color: #705fa3;
font-family: Circe;
2021-06-03 17:15:22 +03:00
font-size: 1.3em;
2021-05-31 18:23:25 +03:00
font-weight: 400;
font-style: normal;
letter-spacing: normal;
text-align: center;
margin: 0 10px;
}
.arrow__left {
position: relative;
width: 30px;
height: 30px;
border-radius: 20px;
background-color: #f6f6f6;
2021-06-03 17:15:22 +03:00
cursor: pointer;
2021-05-31 18:23:25 +03:00
}
.arrow__left > img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.arrow__right {
position: relative;
width: 30px;
height: 30px;
border-radius: 20px;
background-color: #74be4d;
2021-06-03 17:15:22 +03:00
cursor: pointer;
2021-05-31 18:23:25 +03:00
}
.arrow__right > img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}