mirror of
https://framagit.org/tykayn/date-poll-api
synced 2023-08-25 08:23:11 +02:00
67 lines
1.2 KiB
SCSS
Executable File
67 lines
1.2 KiB
SCSS
Executable File
@charset "UTF-8";
|
|
|
|
a {
|
|
display: inline-block;
|
|
position: relative;
|
|
font-family: $default_font;
|
|
font-weight: 600;
|
|
font-size: 1.6rem;
|
|
color: $font_color !important;
|
|
|
|
&,
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&::before,
|
|
&::after {
|
|
content: "";
|
|
}
|
|
|
|
&.next::before,
|
|
&.prev::after {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
display: block;
|
|
width: 100%;
|
|
height: 0.6rem;
|
|
margin: auto;
|
|
background-color: $secondary_color;
|
|
z-index: -1;
|
|
}
|
|
|
|
&.next::after,
|
|
&.prev::before {
|
|
display: inline-block;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border-bottom: 2px solid #000;
|
|
}
|
|
|
|
&.next::after {
|
|
margin-right: 1rem;
|
|
border-right: 2px solid #000;
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
&.prev::before {
|
|
margin-left: 1rem;
|
|
border-left: 2px solid #000;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
&:hover {
|
|
&.next::before,
|
|
&.prev::after {
|
|
background-color: rgba($primary_color, 0.7);
|
|
|
|
}
|
|
}
|
|
|
|
span {
|
|
padding-right: 1rem;
|
|
padding-left: 1rem;
|
|
}
|
|
}
|