mirror of
https://github.com/yusufipk/teknolojirehberleri.xyz.git
synced 2026-09-11 10:56:08 +00:00
60 lines
849 B
SCSS
60 lines
849 B
SCSS
.homepage {
|
|
display: grid;
|
|
justify-items: center;
|
|
grid-template-rows: auto auto 58rem;
|
|
|
|
padding-top: 2rem;
|
|
|
|
|
|
&_heading-1 {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
h1 {
|
|
grid-row: 1;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
&_posts {
|
|
li {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
|
|
&_pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
cursor: pointer;
|
|
align-items: flex-start;
|
|
margin-top: 5rem;
|
|
|
|
a {
|
|
background-color: #383838;
|
|
padding: 8px 16px;
|
|
border-radius: 1rem;
|
|
text-decoration: none;
|
|
font-size: 2rem;
|
|
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include media("<smallest") {
|
|
grid-template-rows: auto auto 48rem;
|
|
|
|
&_pagination {
|
|
a {
|
|
font-size: 1.6rem;
|
|
padding: 5px 10px;
|
|
}
|
|
}
|
|
|
|
li {
|
|
font-size: 1.6rem;
|
|
}
|
|
}
|
|
}
|