add next page frontpage

This commit is contained in:
2024-08-13 18:34:49 +03:00
parent 85c2625635
commit 92e1eef21e
3 changed files with 35 additions and 12 deletions

View File

@@ -88,6 +88,32 @@
flex-direction: column;
}
.frontpage-next{
padding: 1.8rem 0 1.7rem;
grid-column: span 2;
width: 100%;
text-align: center;
border-top: 0.1rem solid var(--gray);
margin-top: -1px;
font-family: 'Raleway', sans-serif;
font-weight: bold;
transition: 0.3s;
font-size: 1.4em;
display: flex;
justify-content: center;
}
.frontpage-next a{
color: var(--secondary);
}
.frontpage-next a:hover{
color: var(--primary);
}
.articles-preview__show-next {
padding: 1.8rem 0 1.7rem;
grid-column: span 2;
@@ -96,13 +122,14 @@
border-top: 0.1rem solid var(--gray);
margin-top: -1px;
font-family: 'Raleway', sans-serif;
transition: 0.3s;
font-size: 1.3rem;
font-size: 1.4em;
display: flex;
justify-content: center;
}
.articles-preview__show-next:hover {
color: var(--primary);
}