Шаблон:Dungeon Crusher Wiki/Navigation/styles.css: различия между версиями
Нет описания правки |
Нет описания правки |
||
| Строка 7: | Строка 7: | ||
.mainpage-navigation .card { | .mainpage-navigation .card { | ||
box-sizing: border-box; | |||
border-radius: 8px; | |||
overflow: hidden; | |||
background-color: hsl( 203, 44%, 14% ); | |||
box-shadow: 0 1px 3px rgba(0,0,0,0.03),0 1px 2px rgba(0,0,0,0.06); | |||
transition: box-shadow 0.2s ease; | |||
} | } | ||
Версия от 17:54, 26 ноября 2023
.mainpage-navigation {
display: grid;
justify-content: center;
grid-gap: 1rem;
grid-template-columns: repeat(6, 166px);
}
.mainpage-navigation .card {
box-sizing: border-box;
border-radius: 8px;
overflow: hidden;
background-color: hsl( 203, 44%, 14% );
box-shadow: 0 1px 3px rgba(0,0,0,0.03),0 1px 2px rgba(0,0,0,0.06);
transition: box-shadow 0.2s ease;
}
.mainpage-navigation .card:hover .card-caption {
color: white;
}
.mainpage-navigation .card-caption {
padding: 0.4rem;
background: #304665;
color: #bfcee7;
text-align: center;
transition: color 0.2s ease;
}
.mainpage-navigation .card-image {
height: 180px;
background-color: #2b2f36;
overflow: hidden;
}