Cast has more css shadows and animations.

This commit is contained in:
2022-01-14 17:04:28 +01:00
parent 9f3745b71c
commit aaef8a6107
2 changed files with 16 additions and 4 deletions

View File

@@ -29,12 +29,16 @@ export default {
ol { ol {
overflow-x: scroll; overflow-x: scroll;
padding-bottom: 10px; padding: 0;
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0;
display: flex; display: flex;
scrollbar-width: none; /* for Firefox */
&::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
} }
} }
</style> </style>

View File

@@ -58,7 +58,7 @@ li.card {
background-color: var(--background-color-secondary); background-color: var(--background-color-secondary);
color: var(--text-color); color: var(--text-color);
transition: transform 0.5s ease, color 0.4s ease, border-color 0.4s ease; transition: all 0.3s ease;
transform: scale(0.97) translateZ(0); transform: scale(0.97) translateZ(0);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
@@ -68,6 +68,7 @@ li.card {
} }
&:hover { &:hover {
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
transform: scale(1.03); transform: scale(1.03);
} }
@@ -82,6 +83,10 @@ li.card {
.meta { .meta {
font-size: 0.9em; font-size: 0.9em;
color: var(--text-color-70); color: var(--text-color-70);
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
} }
a { a {
@@ -92,6 +97,9 @@ li.card {
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
min-width: 140px;
min-height: 210px;
background-color: var(--text-color-90);
} }
} }
</style> </style>