ant-design/site/theme/template/Home/index.less

51 lines
750 B
Plaintext
Raw Normal View History

2019-12-26 15:27:52 +08:00
@import '../../../../components/style/themes/default.less';
.home-container {
h1,
h2,
h3,
h4 {
&.ant-typography {
font-weight: 400;
}
}
img {
object-fit: cover;
}
.home-block-content {
margin: 88px 24px 124px;
h2.ant-typography {
margin-bottom: 56px;
}
}
2019-12-31 15:10:40 +08:00
.home-link-arrow {
position: relative;
2019-12-31 15:47:43 +08:00
margin-left: 0.3em;
2019-12-31 15:10:40 +08:00
font-size: 0.85em;
opacity: 0.75;
2019-12-31 15:47:43 +08:00
transition: all 0.2s;
2019-12-31 15:10:40 +08:00
}
a:hover .home-link-arrow {
transform: translateX(3px);
opacity: 1;
}
2019-12-26 15:27:52 +08:00
}
@media (max-width: @screen-sm-min) {
.home-container {
.home-block-content {
margin-top: 64px;
margin-bottom: 96px;
h2.ant-typography {
margin-bottom: 44px;
}
}
}
}