mempool/frontend/src/app/components/blocks-list/blocks-list.component.scss

159 lines
2.2 KiB
SCSS
Raw Normal View History

.container-xl {
max-width: 1400px;
padding-bottom: 100px;
}
2022-03-11 17:09:13 +01:00
.container-xl.widget {
padding-left: 0px;
padding-bottom: 0px;
2022-03-11 17:09:13 +01:00
}
.container {
max-width: 100%;
}
2022-05-12 17:05:31 +02:00
tr, td, th {
border: 0px;
padding-top: 0.65rem !important;
2022-03-11 17:09:13 +01:00
padding-bottom: 0.7rem !important;
}
.clear-link {
color: white;
}
2022-03-11 14:54:34 +01:00
.disabled {
pointer-events: none;
opacity: 0.5;
}
.progress {
background-color: #2d3348;
}
2022-03-11 17:09:13 +01:00
.pool {
width: 17%;
2022-04-18 11:54:52 +09:00
@media (max-width: 576px) {
width: 34%;
}
2022-03-11 17:09:13 +01:00
}
.pool.widget {
width: 40%;
2022-05-12 17:05:31 +02:00
padding-left: 24px;
@media (max-width: 376px) {
2022-03-11 17:09:13 +01:00
width: 60%;
}
}
.pool-name {
display: inline-block;
vertical-align: text-top;
padding-left: 10px;
}
.height {
2022-03-11 14:54:34 +01:00
width: 10%;
}
2022-03-11 17:09:13 +01:00
.height.widget {
2022-05-12 17:05:31 +02:00
width: 15%;
2022-03-11 17:09:13 +01:00
@media (max-width: 576px) {
width: 10%;
}
}
.timestamp {
2022-04-18 11:54:52 +09:00
width: 18%;
@media (max-width: 900px) {
display: none;
}
}
.mined {
2022-03-11 14:54:34 +01:00
width: 13%;
@media (max-width: 576px) {
display: none;
}
}
.txs {
padding-right: 40px;
@media (max-width: 1100px) {
padding-right: 10px;
}
2022-03-11 17:09:13 +01:00
@media (max-width: 875px) {
display: none;
}
}
.txs.widget {
padding-right: 0;
@media (max-width: 650px) {
display: none;
}
}
.fees {
2022-04-18 11:54:52 +09:00
width: 10%;
@media (max-width: 650px) {
display: none;
}
}
2022-03-11 17:09:13 +01:00
.fees.widget {
width: 20%;
}
.reward {
2022-04-18 11:54:52 +09:00
width: 10%;
@media (max-width: 576px) {
width: 7%;
padding-right: 30px;
}
}
2022-03-11 17:09:13 +01:00
.reward.widget {
width: 20%;
@media (max-width: 576px) {
width: 30%;
padding-right: 0;
}
}
.size {
width: 12%;
@media (max-width: 1000px) {
width: 15%;
}
@media (max-width: 650px) {
width: 20%;
}
@media (max-width: 450px) {
display: none;
}
}
/* Tooltip text */
.tooltip-custom {
position: relative;
}
.tooltip-custom .tooltiptext {
visibility: hidden;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
position: absolute;
z-index: 1;
top: -40px;
left: 0;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-custom:hover .tooltiptext {
visibility: visible;
}
.scriptmessage {
overflow: hidden;
display: inline-block;
text-overflow: ellipsis;
vertical-align: middle;
max-width: 50vw;
text-align: left;
}