Template
Card2/styles.css
From Dogcraft Wiki
No edit summary |
No edit summary Tag: Reverted |
||
Line 15: | Line 15: | ||
div.wiki-card > a:nth-child(1) { | div.wiki-card > a:nth-child(1) { | ||
height: 5em; /*this is important because of image height hack (see template doc)*/ | |||
display: flex; | display: flex; | ||
justify-content: center; | justify-content: center; | ||
Line 44: | Line 45: | ||
div.wiki-card.card-cover > a:nth-child(1) > img { | div.wiki-card.card-cover > a:nth-child(1) > img { | ||
height: 100%; | |||
object-fit: cover; | object-fit: cover; | ||
border-radius: 5px 5px 0 0; | border-radius: 5px 5px 0 0; |
Revision as of 22:37, 28 June 2023
div.wiki-card {
display: flex;
flex-direction: column;
font-weight: 600;
background: #ffffff;
border-radius:5px;
box-shadow: 0 2px 3px rgba(85, 85, 85, 0.1), 0 0 0 1px rgba(85, 85, 85, 0.1);
transition: box-shadow 0.2s ease-in-out;
}
div.wiki-card:hover,
div.wiki-card:focus{
box-shadow: 0 2px 3px rgba(85, 85, 85, 0.25), 0 0 10px rgba(85, 85, 85, 0.25);
}
div.wiki-card > a:nth-child(1) {
height: 5em; /*this is important because of image height hack (see template doc)*/
display: flex;
justify-content: center;
align-items: center;
}
div.wiki-card > a:nth-child(2) {
box-sizing:border-box;
padding: 10px 5px;
width: 100%;
line-height: 20px;
font-size: 16px; /*this is important because of image height hack (see template doc)*/
text-align: center;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
div.wiki-card > a:nth-child(2):hover,
div.wiki-card > a:nth-child(2):focus {
text-decoration: none;
}
/* image mode: cover */
div.wiki-card:not(.card-cover) > a:nth-child(1) {
padding: 10px 20.83% 0;
}
div.wiki-card.card-cover > a:nth-child(1) > img {
height: 100%;
object-fit: cover;
border-radius: 5px 5px 0 0;
filter: saturate(75%) brightness(87%);
}
div.wiki-card.card-cover:hover > a:nth-child(1) > img,
div.wiki-card.card-cover:focus > a:nth-child(1) > img{
filter: saturate(100%) brightness(100%);
}
/* overflow: true */
div.wiki-card.card-overflow > a:nth-child(2) {
word-wrap: break-word;
white-space: normal;
}
This page was last modified on 28 June 2023, at 22:37. (16 months ago)