docusaurus/v2/lib/theme/DocsPaginator/styles.module.css

44 lines
772 B
CSS

/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
.paginatorContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.paginatorRightContainer {
text-align: right;
}
.paginatorLink {
background-color: #f2f3f5;
border-radius: 30px;
color: #000;
padding: 1.5em 1.5em 0.75em;
text-decoration: none;
transition: 0.3s all ease-in-out;
}
.paginatorLink:hover {
background-color: #00a388;
color: #fff;
}
.arrow {
fill: none;
height: 1.5em;
stroke: currentColor;
stroke-linejoin: round;
stroke-linecap: round;
stroke-width: 2;
width: 1.5em;
}
.label {
vertical-align: super;
}