0
1
Fork 0
hedera-web-mindshore/forms/admin/links/style.css

61 lines
951 B
CSS
Raw Normal View History

2015-01-31 01:05:12 +00:00
2022-05-25 18:04:16 +00:00
.cpanel {
2015-02-08 15:38:38 +00:00
padding: 1em;
2015-01-31 01:05:12 +00:00
}
2022-05-25 18:04:16 +00:00
.cpanel .box {
max-width: 420px;
2015-01-31 01:05:12 +00:00
}
2015-12-02 17:26:58 +00:00
/* Items */
2022-05-25 18:04:16 +00:00
.cpanel .items > div {
max-width: 800px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
margin: 0 auto;
}
.cpanel .item {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
width: 120px;
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;
}
.cpanel .item > h3 {
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-25 18:04:16 +00:00
.cpanel .item > .secondary {
flex: none;
margin: 0;
font-size: .8rem;
color: #666;
height: 40px;
overflow: hidden;
2015-02-01 03:21:54 +00:00
}