ant-design/site/theme/static/page-nav.less

64 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-03-01 11:46:18 +08:00
.prev-next-nav {
margin-right: 64px;
margin-left: 64px;
overflow: hidden;
2017-03-11 01:24:46 +08:00
font-size: 14px;
2017-11-28 16:15:22 +08:00
border-top: 1px solid @site-border-color-split;
2016-03-01 11:46:18 +08:00
2017-03-11 01:24:46 +08:00
> .prev-page,
> .next-page {
float: left;
width: 50%;
2017-03-11 01:24:46 +08:00
height: 72px;
line-height: 72px;
2017-05-28 15:35:49 +08:00
text-decoration: none;
2017-03-11 01:24:46 +08:00
}
2016-03-01 11:46:18 +08:00
2017-03-11 01:24:46 +08:00
> a.prev-page {
2018-08-21 17:46:20 +08:00
.footer-nav-icon-before {
position: relative;
left: 0;
2017-03-11 01:24:46 +08:00
margin-right: 1em;
2017-11-28 16:15:22 +08:00
color: @site-text-color-secondary;
font-size: 12px;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
2017-03-11 01:24:46 +08:00
}
2016-03-01 11:46:18 +08:00
2018-08-21 17:46:20 +08:00
.footer-nav-icon-after {
display: none;
}
&:hover .footer-nav-icon-before {
2017-03-11 01:24:46 +08:00
left: -3px;
color: @primary-color;
2017-03-11 01:24:46 +08:00
}
}
> .next-page {
float: right;
text-align: right;
2017-03-11 01:24:46 +08:00
2018-08-21 17:46:20 +08:00
.footer-nav-icon-after {
position: relative;
right: 0;
2017-03-11 01:24:46 +08:00
margin-left: 1em;
2017-11-28 16:15:22 +08:00
color: @site-text-color-secondary;
font-size: 12px;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
2017-03-11 01:24:46 +08:00
}
2018-08-21 17:46:20 +08:00
.footer-nav-icon-before {
display: none;
}
&:hover .footer-nav-icon-after {
2017-03-11 01:24:46 +08:00
right: -3px;
color: @primary-color;
2017-03-11 01:24:46 +08:00
}
}
2016-03-01 11:46:18 +08:00
2017-03-11 01:24:46 +08:00
.chinese {
margin-left: 0.5em;
}
}