mirror of
https://github.com/NovaOSS/nova-web.git
synced 2024-11-26 00:43:58 +01:00
73 lines
1.6 KiB
CSS
73 lines
1.6 KiB
CSS
@charset "UTF-8";
|
|
header {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
font-size: 40px;
|
|
}
|
|
header h1 {
|
|
line-height: 4rem;
|
|
}
|
|
|
|
div.user-quotes {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
grid-gap: 2rem;
|
|
}
|
|
div.user-quotes div.user-quote__field {
|
|
padding-inline: 2rem;
|
|
padding-block: 2rem;
|
|
background: rgba(247, 154, 182, 0.1411764706);
|
|
border: 1px solid rgba(244, 90, 136, 0.3803921569);
|
|
border-radius: 5px;
|
|
position: relative;
|
|
transition: all 200ms;
|
|
box-shadow: 0 0 30px transparent;
|
|
min-height: 200px;
|
|
}
|
|
div.user-quotes div.user-quote__field:hover {
|
|
scale: 1.05;
|
|
filter: brightness(1.1) saturate(1.1);
|
|
box-shadow: 0 0 30px rgba(244, 90, 136, 0.3803921569);
|
|
}
|
|
div.user-quotes div.user-quote__field::before {
|
|
font-family: "Times New Roman", Times, serif;
|
|
content: "“";
|
|
font-size: 150px;
|
|
color: rgba(247, 154, 182, 0.1411764706);
|
|
position: absolute;
|
|
bottom: -1rem;
|
|
left: 1rem;
|
|
transform: rotate(180deg);
|
|
}
|
|
div.user-quotes div.user-quote__field img {
|
|
cursor: pointer;
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
border: 3px solid rgba(244, 90, 136, 0.3803921569);
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
}
|
|
div.user-quotes div.user-quote__field span.user-quote__username {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: #b53d61;
|
|
}
|
|
div.user-quotes div.user-quote__field p {
|
|
margin-block: 0;
|
|
font-size: 1.5rem;
|
|
padding-right: 7rem;
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
header {
|
|
font-size: 26px;
|
|
}
|
|
header h1 {
|
|
line-height: 3rem;
|
|
}
|
|
header h3 {
|
|
font-size: 28px;
|
|
}
|
|
}/*# sourceMappingURL=home.css.map */ |