Sites-Camelia/p/camelianimes/calendar.css

67 lines
1010 B
CSS
Raw Normal View History

.cards {
display: flex;
flex-direction: column;
gap: 1rem;
}
.card {
background: #3f4248;
border-radius: 1rem;
padding: 1rem;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.column {
display: flex;
flex-direction: column;
gap: .5rem;
justify-content: space-between;
}
.image {
width: 100%;
height: 100%;
border-radius: 1rem;
}
.icon {
width: 1rem;
height: 1rem;
color: white;
}
.flex {
display: flex;
align-items: center;
gap: .25rem;
flex-wrap: wrap;
}
.anime-name {
font-size: 1.25rem;
font-weight: bold;
}
.discordButton {
background: #5b5d67;
color: white;
padding: .5rem 1rem;
border-radius: .5rem;
text-decoration: none;
transition: background .2s;
}
.discordButton:hover {
background: #636570;
text-decoration: none;
}
.d-flex {
display: flex;
}