36 lines
523 B
CSS
Executable File
36 lines
523 B
CSS
Executable File
#gifone {
|
|
position: relative;
|
|
width: 100px;
|
|
height: auto;
|
|
}
|
|
|
|
#giftwo {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 25%;
|
|
transform: translateX(-50%);
|
|
width: 100px;
|
|
height: auto;
|
|
}
|
|
|
|
.page-links {
|
|
font-size: 0.8rem;
|
|
letter-spacing: 0.1em;
|
|
margin-top: 1rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.page-links a {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.page-links a[aria-current="page"] {
|
|
color: #00d3b7;
|
|
}
|
|
|
|
.page-links__separator {
|
|
color: #d0d0d0;
|
|
display: inline-block;
|
|
margin: 0 0.5rem;
|
|
}
|