ant-design/site/theme/static/home.less

189 lines
3.4 KiB
Plaintext
Raw Normal View History

2016-11-21 17:48:39 +08:00
.banner-wrapper {
2016-03-23 22:36:26 +08:00
position: relative;
width: 100%;
overflow: hidden;
2017-11-30 21:38:48 +08:00
background: url("https://gw.alipayobjects.com/zos/rmsportal/UuWvfiYyEArxEECAKvRt.png") no-repeat center / cover;
2016-02-29 14:08:40 +08:00
}
2016-03-03 17:23:08 +08:00
.banner-text-wrapper {
2016-03-23 22:36:26 +08:00
position: absolute;
2017-11-30 21:38:48 +08:00
right: 9%;
top: 55%;
color: @heading-color;
2016-03-03 17:23:08 +08:00
}
.banner-text-wrapper h2 {
2017-11-30 21:38:48 +08:00
font-size: 56px;
line-height: 64px;
font-weight: 500;
color: @heading-color;
font-family: "Helvetica Neue", sans-serif;
2017-11-21 19:10:01 +08:00
margin: 0;
2016-03-03 17:23:08 +08:00
}
.banner-text-wrapper h2 p {
2017-11-30 21:38:48 +08:00
color: #f9323f;
2016-03-23 22:36:26 +08:00
display: inline-block;
2017-11-21 19:10:01 +08:00
margin: 0;
2016-03-03 17:23:08 +08:00
}
.banner-text-wrapper .line {
2017-11-30 21:38:48 +08:00
width: 2px;
height: 96px;
2016-03-23 22:36:26 +08:00
position: absolute;
2017-11-30 21:38:48 +08:00
background: #d7dce0;
2016-03-23 22:36:26 +08:00
top: 16px;
2017-11-30 21:38:48 +08:00
left: -25px;
2016-03-03 17:23:08 +08:00
}
.banner-text-wrapper > p {
2017-11-30 21:38:48 +08:00
margin: 20px auto 32px;
font-size: 20px;
color: @text-color;
2016-03-03 17:23:08 +08:00
}
2016-03-14 15:00:11 +08:00
.banner-text-wrapper .start-button {
2016-03-23 22:36:26 +08:00
margin-bottom: 24px;
2017-11-30 21:38:48 +08:00
.ant-btn {
2016-09-26 12:28:10 +08:00
height: 40px;
2017-11-30 21:38:48 +08:00
border-radius: 100px;
margin-right: 16px;
font-size: 16px;
2017-12-21 14:48:35 +08:00
min-width: 114px;
2016-03-23 22:36:26 +08:00
text-align: center;
2017-11-30 21:38:48 +08:00
a {
text-decoration: none;
2017-01-30 17:44:25 +08:00
}
2016-03-23 22:36:26 +08:00
}
2016-03-03 17:23:08 +08:00
}
2016-03-14 15:00:11 +08:00
.banner-text-wrapper .github-btn {
2016-03-23 22:36:26 +08:00
line-height: 14px;
a:hover {
color: #333;
}
2016-03-03 17:23:08 +08:00
}
2016-03-14 15:00:11 +08:00
2016-03-03 17:23:08 +08:00
.down {
2016-03-23 22:36:26 +08:00
text-align: center;
position: absolute;
bottom: 30px;
left: 50%;
margin-left: -7px;
2017-11-30 21:38:48 +08:00
color: @text-color-secondary;
animation: upDownMove 1.2s ease-in-out infinite alternate;
2016-03-03 17:23:08 +08:00
}
.page {
2016-03-23 22:36:26 +08:00
min-height: 700px;
2017-12-01 20:27:44 +08:00
height: 100vh;
2016-03-03 17:23:08 +08:00
}
.content-wrapper {
2016-03-23 22:36:26 +08:00
width: 100%;
max-width: 1500px;
2016-03-23 22:36:26 +08:00
margin: auto;
overflow: hidden;
background: #fff;
2016-02-29 14:08:40 +08:00
2016-03-23 22:36:26 +08:00
.image-wrapper {
2017-11-30 21:38:48 +08:00
width: 60%;
2016-03-23 22:36:26 +08:00
float: left;
position: relative;
}
2016-03-03 17:23:08 +08:00
2016-03-23 22:36:26 +08:00
.text-wrapper {
2017-11-30 21:38:48 +08:00
width: 40%;
2016-03-23 22:36:26 +08:00
float: left;
position: relative;
2017-11-30 21:38:48 +08:00
top: 50%;
transform: translateY(-50%);
left: 110px;
2017-03-31 13:45:16 +08:00
font-family: Lato, @font-family;
z-index: 1;
2017-12-21 10:26:40 +08:00
min-height: 194px;
2016-03-23 22:36:26 +08:00
}
.text-wrapper h2,
.text-wrapper-bottom h2 {
2017-11-30 21:38:48 +08:00
font-size: 38px;
color: @heading-color;
line-height: 46px;
font-weight: 500;
white-space: nowrap;
2016-03-23 22:36:26 +08:00
}
.text-wrapper p {
2017-11-30 21:38:48 +08:00
margin: 20px 0 40px;
2016-03-23 22:36:26 +08:00
font-size: 16px;
2017-11-30 21:38:48 +08:00
line-height: 24px;
color: @text-color;
2016-03-23 22:36:26 +08:00
}
.left-text {
padding-left: 10%;
2017-12-01 20:27:44 +08:00
left: 0;
2016-03-23 22:36:26 +08:00
}
2016-02-29 14:08:40 +08:00
}
2017-12-01 14:43:06 +08:00
#page3 .text-wrapper {
left: -30px;
}
2016-03-03 17:23:08 +08:00
.image1 {
2016-03-23 22:36:26 +08:00
background: url("https://t.alipayobjects.com/images/T1Ch8kXfpdXXXXXXXX.png") no-repeat right / 841px;
height: 511px;
top: 50%;
margin-top: -256px;
2016-03-03 17:23:08 +08:00
}
.image2 {
2016-03-23 22:36:26 +08:00
background: url("https://t.alipayobjects.com/images/T1r5RkXotXXXXXXXXX.png") no-repeat left / 800px;
height: 474px;
top: 50%;
margin-top: -266px;
2016-03-03 17:23:08 +08:00
}
.image3 {
2016-03-23 22:36:26 +08:00
padding-right: 10%;
background: url("https://t.alipayobjects.com/images/T1nx0kXdFfXXXXXXXX.png") no-repeat right / 639px;
background-origin: content-box;
height: 500px;
top: 50%;
margin-top: -250px;
2016-03-03 17:23:08 +08:00
}
.image4 {
2016-03-23 22:36:26 +08:00
background: url("https://t.alipayobjects.com/images/T1lyJkXg4aXXXXXXXX.png") no-repeat center / 615px;
height: 364px;
margin: auto;
2016-03-03 17:23:08 +08:00
}
.text-wrapper-bottom {
2016-03-23 22:36:26 +08:00
text-align: center;
margin: 10% auto 40px;
2016-03-03 17:23:08 +08:00
}
.text-wrapper-bottom p {
2016-03-23 22:36:26 +08:00
margin: 20px auto;
font-size: 16px;
2017-11-30 21:38:48 +08:00
line-height: 24px;
color: @text-color;
2016-03-23 22:36:26 +08:00
}
@keyframes upDownMove {
to {
transform: translateY(10px);
}
}
2017-12-18 17:58:45 +08:00
.promote-banner {
position: relative;
2017-12-25 14:08:56 +08:00
display: none;
2017-12-18 17:58:45 +08:00
padding-top: 64px;
img {
max-width: 100%;
}
.anticon-cross {
position: absolute;
font-size: 24px;
cursor: pointer;
right: 24px;
top: 64px + 24px;
color: #fff;
transition: all .3s;
opacity: 0;
}
&:hover .anticon-cross {
opacity: 1;
}
}