ant-design/site/theme/static/page-nav.less
2018-12-24 15:59:59 +08:00

64 lines
1.1 KiB
Plaintext

.prev-next-nav {
margin-left: 64px;
margin-right: 64px;
overflow: hidden;
font-size: 14px;
border-top: 1px solid @site-border-color-split;
> .prev-page,
> .next-page {
width: 50%;
float: left;
line-height: 72px;
height: 72px;
text-decoration: none;
}
> a.prev-page {
.footer-nav-icon-before {
font-size: 12px;
margin-right: 1em;
color: @site-text-color-secondary;
transition: all 0.3s;
position: relative;
left: 0;
}
.footer-nav-icon-after {
display: none;
}
&:hover .footer-nav-icon-before {
color: @primary-color;
left: -3px;
}
}
> .next-page {
text-align: right;
float: right;
.footer-nav-icon-after {
font-size: 12px;
margin-left: 1em;
color: @site-text-color-secondary;
transition: all 0.3s;
position: relative;
right: 0;
}
.footer-nav-icon-before {
display: none;
}
&:hover .footer-nav-icon-after {
color: @primary-color;
right: -3px;
}
}
.chinese {
margin-left: 0.5em;
}
}