mirror of
https://github.com/mue/mue.git
synced 2026-07-17 14:04:09 +02:00
42 lines
573 B
SCSS
42 lines
573 B
SCSS
@import '../../../scss/variables';
|
|
|
|
.quote {
|
|
font-size: 0.8em;
|
|
text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
@media screen and (min-width: 600px) {
|
|
.quote {
|
|
margin-left: 30%;
|
|
margin-right: 30%;
|
|
}
|
|
}
|
|
|
|
.quoteauthor {
|
|
font-size: 0.9em;
|
|
letter-spacing: 0.5px;
|
|
svg {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.copyButton {
|
|
cursor: pointer;
|
|
vertical-align: middle;
|
|
transition: ease 0.2s !important;
|
|
|
|
&:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
|
|
i.material-icons,
|
|
h1.quoteauthor {
|
|
display: inline;
|
|
}
|
|
|
|
.quoteauthorlink {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|