mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
b445baa001
* chore(deps-dev): bump stylelint-config-prettier from 8.0.2 to 9.0.2 Bumps [stylelint-config-prettier](https://github.com/prettier/stylelint-config-prettier) from 8.0.2 to 9.0.2. - [Release notes](https://github.com/prettier/stylelint-config-prettier/releases) - [Commits](https://github.com/prettier/stylelint-config-prettier/compare/v8.0.2...v9.0.2) --- updated-dependencies: - dependency-name: stylelint-config-prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: autofix stylelint errors * chore: autofix stylelint errors Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
81 lines
1.2 KiB
Plaintext
81 lines
1.2 KiB
Plaintext
@import (reference) '../../../../components/style/themes/variable.less';
|
|
|
|
.home-container {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
&.ant-typography {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
img {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.home-block-content {
|
|
margin: 88px 40px 124px;
|
|
|
|
h2.ant-typography {
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
&-extra {
|
|
float: right;
|
|
padding-top: 12px;
|
|
font-weight: 200;
|
|
font-size: 16px;
|
|
|
|
html.rtl & {
|
|
float: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
.home-link-arrow {
|
|
position: relative;
|
|
margin-left: 0.3em;
|
|
font-size: 0.85em;
|
|
opacity: 0.75;
|
|
transition: all 0.2s;
|
|
|
|
&-rtl {
|
|
margin-right: 0.3em;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
a:hover .home-link-arrow {
|
|
transform: translateX(3px);
|
|
opacity: 1;
|
|
}
|
|
|
|
a:hover .home-link-arrow-rtl {
|
|
transform: translateX(-3px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@media (max-width: @screen-sm-min) {
|
|
.home-container {
|
|
.home-block-content {
|
|
margin-top: 64px;
|
|
margin-bottom: 96px;
|
|
|
|
h2.ant-typography {
|
|
margin-bottom: 44px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 767.99px) {
|
|
.home-container {
|
|
.home-block-content {
|
|
margin-right: 24px;
|
|
margin-left: 24px;
|
|
}
|
|
}
|
|
}
|