snort/src/Element/Zap.css

75 lines
983 B
CSS
Raw Normal View History

2023-02-03 21:38:14 +00:00
.zap {
background-color: var(--note-bg);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 10px;
border-radius: 16px;
margin-bottom: 12px;
}
.zap .summary {
display: flex;
align-items: center;
justify-content: space-between;
}
.zap .body a {
color: var(--highlight);
}
2023-02-03 21:55:03 +00:00
.zap .amount {
2023-02-03 21:38:14 +00:00
font-size: 18px;
}
2023-02-03 21:55:03 +00:00
.zap .amount:before {
2023-02-03 21:38:14 +00:00
content: '⚡️ ';
}
.top-zap .amount:before {
content: '';
}
.zaps-summary {
margin-top: 8px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.top-zap {
2023-02-03 21:55:03 +00:00
font-size: 14px;
2023-02-03 21:38:14 +00:00
border: none;
margin: 0;
}
.top-zap .pfp {
margin-right: .3em;
}
.top-zap .summary {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.top-zap .avatar {
width: 21px;
height: 21px;
}
.top-zap .nip05 {
display: none;
}
.amount-number {
font-weight: bold;
}
.rest-zaps:before {
content: ", ";
}