1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 13:41:54 +02:00
blog/src/components/Pagination/index.module.css

41 lines
860 B
CSS
Raw Normal View History

2021-03-04 01:20:39 +01:00
.pagination {
margin-top: calc(var(--spacer) * 3);
margin-bottom: var(--spacer);
display: flex;
justify-content: center;
}
.number {
text-align: center;
padding: calc(var(--spacer) / 6) calc(var(--spacer) / 2);
border: 1px solid var(--text-color-dimmed);
font-variant-numeric: lining-nums;
margin-left: -1px;
display: flex;
align-items: center;
justify-content: center;
min-width: 2.5rem;
color: var(--text-color);
}
.number:hover,
.number:focus {
2021-11-28 17:48:05 +01:00
background: rgba(255 255 255 / 10%);
2021-03-04 01:20:39 +01:00
}
.number:first-child {
border-top-left-radius: var(--border-radius);
border-bottom-left-radius: var(--border-radius);
}
.number:last-child {
border-top-right-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
}
.current {
cursor: default;
pointer-events: none;
color: var(--text-color-dimmed);
}