2015-01-31 01:05:12 +00:00
|
|
|
|
2022-05-25 18:04:16 +00:00
|
|
|
.cpanel .items > div {
|
2022-05-26 06:08:31 +00:00
|
|
|
max-width: 900px;
|
2022-05-25 18:04:16 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
2022-05-26 06:08:31 +00:00
|
|
|
gap: 16px;
|
2022-05-25 18:04:16 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.cpanel .item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0;
|
2022-05-26 06:08:31 +00:00
|
|
|
width: 140px;
|
2022-05-25 18:04:16 +00:00
|
|
|
padding: 15px;
|
|
|
|
text-align: center;
|
|
|
|
transition: background-color 250ms ease-out;
|
2015-12-02 17:26:58 +00:00
|
|
|
}
|
2022-05-25 18:04:16 +00:00
|
|
|
.cpanel .item:hover {
|
2015-12-02 17:26:58 +00:00
|
|
|
background-color: rgba(1, 1, 1, 0.05);
|
|
|
|
}
|
2022-05-25 18:04:16 +00:00
|
|
|
.cpanel .item > .htk-image {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2016-05-02 13:05:49 +00:00
|
|
|
margin: 0;
|
2015-12-02 17:26:58 +00:00
|
|
|
float: left;
|
2022-05-25 18:04:16 +00:00
|
|
|
height: 80px;
|
2015-12-02 17:26:58 +00:00
|
|
|
}
|
2022-05-25 18:04:16 +00:00
|
|
|
.cpanel .item > .htk-image > img {
|
|
|
|
max-height: 60px;
|
|
|
|
max-width: 60px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2022-05-26 06:08:31 +00:00
|
|
|
.cpanel .item > h6 {
|
2022-05-25 18:04:16 +00:00
|
|
|
flex: none;
|
2015-12-02 17:26:58 +00:00
|
|
|
margin: .1em 0;
|
2022-05-25 18:04:16 +00:00
|
|
|
font-size: .9rem;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2015-01-31 01:05:12 +00:00
|
|
|
}
|
2022-05-26 06:08:31 +00:00
|
|
|
.cpanel .item > .text-secondary {
|
2022-05-25 18:04:16 +00:00
|
|
|
flex: none;
|
|
|
|
margin: 0;
|
|
|
|
font-size: .8rem;
|
|
|
|
height: 40px;
|
|
|
|
overflow: hidden;
|
2015-02-01 03:21:54 +00:00
|
|
|
}
|