mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
26 lines
467 B
SCSS
26 lines
467 B
SCSS
@import 'styles/colors.scss';
|
|
|
|
.quotes {
|
|
position: relative;
|
|
width: fit-content;
|
|
white-space: pre-wrap;
|
|
text-align: center;
|
|
font-style: italic;
|
|
color: rgba($color: $black, $alpha: 0.75);
|
|
|
|
&::before {
|
|
position: absolute;
|
|
left: -0.65em;
|
|
content: '“';
|
|
font-family: sans-serif;
|
|
font-size: 2.25em;
|
|
}
|
|
&::after {
|
|
position: absolute;
|
|
right: -0.5em;
|
|
content: '”';
|
|
font-family: sans-serif;
|
|
font-size: 2.25em;
|
|
}
|
|
}
|