nova-web/web/static/css/home.css

100 lines
2.1 KiB
CSS
Raw Normal View History

2023-08-29 21:02:50 +02:00
@charset "UTF-8";
2023-07-21 23:50:17 +02:00
header {
max-width: 800px;
margin: 0 auto;
font-size: 40px;
2023-09-08 22:13:34 +02:00
margin-bottom: 15rem;
2023-07-21 23:50:17 +02:00
}
2023-07-23 02:07:22 +02:00
header h1 {
line-height: 4rem;
}
2023-07-21 23:50:17 +02:00
div.featured__facts {
2023-09-22 01:00:00 +02:00
padding: 1.5rem;
2023-09-08 22:13:34 +02:00
margin-block: 2rem;
display: flex;
vertical-align: middle;
2023-09-08 22:17:14 +02:00
transition: all 200ms;
2023-09-08 22:13:34 +02:00
}
div.featured__facts:hover {
2023-09-11 14:05:12 +02:00
scale: 1.025;
2023-09-08 22:13:34 +02:00
filter: brightness(1.1) saturate(1.1);
box-shadow: 0 0 30px rgba(104, 58, 150, 0.2196078431);
2023-08-29 21:02:50 +02:00
}
div.featured__facts img, div.featured__facts svg {
width: 50px;
2023-09-11 14:05:12 +02:00
height: 50px;
2023-09-08 22:13:34 +02:00
-o-object-fit: cover;
object-fit: cover;
}
div.featured__facts h2 {
2023-09-08 22:13:34 +02:00
vertical-align: middle;
2023-09-08 22:17:14 +02:00
margin-block: auto;
2023-09-08 22:13:34 +02:00
margin-left: 1rem;
2023-09-11 14:05:12 +02:00
font-size: 1.5rem;
2023-09-08 22:13:34 +02:00
}
div.featured__facts h2 span {
color: #b88df0;
2023-09-08 22:13:34 +02:00
}
2023-08-29 21:02:50 +02:00
div.user-quotes div.user-quote__field {
2023-09-22 01:00:00 +02:00
padding: 1.5rem;
cursor: pointer;
2023-09-08 22:13:34 +02:00
margin-block: 2rem;
background: rgba(204, 154, 247, 0.1411764706);
border: 2px solid rgba(104, 58, 150, 0.2196078431);
2023-08-29 21:02:50 +02:00
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 {
2023-09-11 14:05:12 +02:00
scale: 1.025;
2023-08-29 21:02:50 +02:00
filter: brightness(1.1) saturate(1.1);
box-shadow: 0 0 30px rgba(104, 58, 150, 0.2196078431);
2023-08-29 21:02:50 +02:00
}
div.user-quotes div.user-quote__field::before {
font-family: "Times New Roman", Times, serif;
content: "“";
font-size: 150px;
color: rgba(204, 154, 247, 0.1411764706);
2023-08-29 21:02:50 +02:00
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(104, 58, 150, 0.2196078431);
2023-08-29 21:02:50 +02:00
position: absolute;
top: 1rem;
right: 1rem;
2023-09-08 22:13:34 +02:00
-o-object-fit: scale-down;
object-fit: scale-down;
2023-08-29 21:02:50 +02:00
}
div.user-quotes div.user-quote__field span.user-quote__username {
font-size: 1rem;
font-weight: 600;
color: #b88df0;
2023-08-29 21:02:50 +02:00
}
div.user-quotes div.user-quote__field p {
margin-block: 0;
font-size: 1.5rem;
padding-right: 7rem;
}
2023-07-21 23:50:17 +02:00
@media (max-width: 800px) {
header {
font-size: 26px;
}
header h1 {
line-height: 3rem;
}
2023-07-25 03:38:53 +02:00
header h3 {
font-size: 28px;
}
2023-07-21 23:50:17 +02:00
}/*# sourceMappingURL=home.css.map */