web-apps/apps/common/mobile/resources/less/about.less

78 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-11-12 07:37:06 +00:00
// @text-normal: #000;
2022-03-02 10:09:22 +00:00
// @common-image-path - defined in webpack config
2020-12-27 10:20:30 +00:00
.about {
.page-content {
2022-04-11 17:19:48 +00:00
text-align: center /*rtl:ignore*/;
2022-12-20 14:52:16 +00:00
display: flex;
flex-direction: column;
2020-12-27 10:20:30 +00:00
}
2022-12-22 13:59:07 +00:00
&_ios {
2022-12-21 13:00:44 +00:00
padding-top: 120px;
padding-bottom: 30px;
}
2022-12-22 13:59:07 +00:00
&_android {
2022-12-21 13:00:44 +00:00
padding-top: 60px;
padding-bottom: 16px;
2020-12-27 10:20:30 +00:00
}
2022-12-20 14:52:16 +00:00
&_tablet {
padding-top: 12px;
padding-bottom: 12px;
}
2020-12-27 10:20:30 +00:00
2022-12-20 14:52:16 +00:00
&__text {
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
text-align: center;
color: @text-normal;
margin: 0;
2020-12-27 10:20:30 +00:00
}
2022-12-20 14:52:16 +00:00
a {
color: @brandColor;
2021-12-03 10:52:07 +00:00
}
2022-12-20 14:52:16 +00:00
.logo-block {
&__elem {
display: flex;
justify-content: center;
img {
max-width: 100%;
height: auto;
}
2020-12-27 10:20:30 +00:00
}
}
2022-12-20 14:52:16 +00:00
&__logo {
width: 100%;
height: 80px;
background: ~"url(@{common-image-path}/about/logo-new.svg) no-repeat center";
2020-12-27 10:20:30 +00:00
}
2022-12-20 14:52:16 +00:00
&__editor {
flex-grow: 1;
margin-top: 20px;
2020-12-27 10:20:30 +00:00
}
2021-11-15 07:55:21 +00:00
2022-12-20 14:52:16 +00:00
&__contacts {
text-align: center;
padding-left: 72px;
padding-right: 72px;
}
&__licensor, &__customer {
text-align: center;
margin-top: 12px;
}
2021-07-19 21:11:44 +00:00
}
2021-11-11 12:03:10 +00:00
.theme-type-dark {
2022-12-20 14:52:16 +00:00
.about__logo {
background: ~"url(@{common-image-path}/about/logo-new-white.svg) no-repeat center";
2021-11-11 12:03:10 +00:00
}
}