forked from verdnatura/hedera-web
36 lines
564 B
CSS
36 lines
564 B
CSS
.connections {
|
|
padding: 1em;
|
|
}
|
|
.connections .box {
|
|
max-width: 25em;
|
|
margin: 0 auto;
|
|
}
|
|
.action-bar .connections-sum {
|
|
padding: .4em;
|
|
background-color: #1e88e5;
|
|
border-radius: 0.1em;
|
|
box-shadow: 0 0 0.4em rgba(255, 255, 255, .1);
|
|
}
|
|
|
|
/* List */
|
|
|
|
.connections .item {
|
|
display: block;
|
|
padding: 1em;
|
|
border-bottom: 1px solid #DDD;
|
|
}
|
|
.connections .item > button {
|
|
float: right;
|
|
margin: 0;
|
|
}
|
|
.connections .item > p {
|
|
margin: .1em 0;
|
|
}
|
|
.connections .item > p.important {
|
|
font-size: 1.2em;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|