VELTRON.NET/legacy/archive/bin/anime_reviews.css
2025-06-21 12:35:19 -04:00

54 lines
1,015 B
CSS

.text-divs {
padding: 10px 10px 10px 10px;
margin-bottom: 12px;
}
/* Game Cards */
.anime-review-card {
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.253);
margin-bottom: 12px;
height: 194px;
display: flex;
}
.anime-review-card img {
border: 1px solid #4c5fa1;
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.253);
width: 170px;
height: 170px;
margin: 10px;
}
.anime-review-card div {
padding: 11px;
border-left: 1px solid #4c5fa1;
}
.anime-review-card h2 {
font-size: 1em;
}
.anime-review-card p {
max-height: 50%;
overflow: auto;
}
.anime-review-card audio {
width: 100%;
height: 30px;
margin: 5px 0px;
}
/* CSS for small devices */
@media (max-width: 780px) {
.anime-review-card div {
overflow: auto;
}
.anime-review-card p {
overflow: visible;
}
}
/* CSS for very small devices */
@media (max-width: 550px) {
.anime-review-card div {
border-left: none;
}
.anime-review-card img {
display: none;
}
}