forked from verdnatura/hedera-web
51 lines
865 B
CSS
51 lines
865 B
CSS
|
|
.cpanel .items > div {
|
|
max-width: 900px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
margin: 0 auto;
|
|
}
|
|
.cpanel .item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: 0;
|
|
width: 140px;
|
|
padding: 15px;
|
|
text-align: center;
|
|
transition: background-color 250ms ease-out;
|
|
}
|
|
.cpanel .item:hover {
|
|
background-color: rgba(1, 1, 1, 0.05);
|
|
}
|
|
.cpanel .item > .htk-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0;
|
|
float: left;
|
|
height: 80px;
|
|
}
|
|
.cpanel .item > .htk-image > img {
|
|
max-height: 60px;
|
|
max-width: 60px;
|
|
padding: 0;
|
|
}
|
|
.cpanel .item > h6 {
|
|
flex: none;
|
|
margin: .1em 0;
|
|
font-size: .9rem;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
.cpanel .item > .text-secondary {
|
|
flex: none;
|
|
margin: 0;
|
|
font-size: .8rem;
|
|
height: 40px;
|
|
overflow: hidden;
|
|
}
|