mempool/frontend/src/app/components/footer/footer.component.scss

68 lines
840 B
SCSS
Raw Normal View History

2020-02-17 14:39:20 +01:00
.footer {
position: fixed;
bottom: 0;
width: 100%;
2020-02-23 21:42:29 +01:00
height: 60px;
2020-02-17 14:39:20 +01:00
background-color: #1d1f31;
2020-02-25 14:05:34 +01:00
box-shadow: 15px 15px 15px 15px #000;
2020-03-05 10:13:46 +01:00
z-index: 10;
2020-02-17 14:39:20 +01:00
}
2020-03-03 11:47:01 +01:00
.sub-text {
display: block;
font-weight: bold;
}
.footer > div {
margin-top: 3px;
}
@media (min-width: 1200px) {
.footer > div {
margin-top: 17px;
}
.sub-text {
margin-left: 5px;
display: inline-block;
}
}
@media (max-width: 767.98px) {
.extra-text {
display: none;
}
2020-02-17 14:39:20 +01:00
}
.txPerSecond {
color: #4a9ff4;
}
.mempoolSize {
color: #4a68b9;
}
.unconfirmedTx {
color: #f14d80;
}
.info-block {
float: left;
width: 350px;
line-height: 25px;
}
.progress {
display: inline-flex;
width: 160px;
background-color: #2d3348;
height: 1.1rem;
}
.progress-bar {
padding: 4px;
}
.bg-warning {
background-color: #b58800 !important;
}