Files
mue/src/components/widgets/quote/quote.scss
David Ralph dad43e969f fix: bug fixes
Co-authored-by: Alex Sparkes <turbomarshmello@gmail.com>
2021-04-10 16:22:37 +01:00

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;
}