mempool/frontend/src/app/components/mining-dashboard/mining-dashboard.component.scss

117 lines
1.8 KiB
SCSS
Raw Normal View History

.dashboard-container {
text-align: center;
margin-top: 0.5rem;
.col {
margin-bottom: 1.5rem;
}
}
.card {
2024-04-04 15:36:24 +09:00
background-color: var(--bg);
}
2022-05-12 17:05:31 +02:00
.graph-card {
height: 100%;
@media (min-width: 992px) {
height: 385px;
}
}
.fixed-mempool-graph {
height: 330px;
}
.mempool-graph, .fixed-mempool-graph {
@media (min-width: 768px) {
height: 345px;
}
@media (min-width: 992px) {
height: 440px;
}
}
.card-title {
font-size: 1rem;
2023-01-03 05:24:14 -06:00
color: var(--title-fg);
}
.card-title > a {
2023-01-03 05:24:14 -06:00
color: var(--title-fg);
}
.card-body.pool-ranking {
padding: 1.25rem 0.25rem 0.75rem 0.25rem;
}
2022-03-12 17:56:00 +01:00
.card-text {
font-size: 22px;
}
#blockchain-container {
position: relative;
overflow-x: scroll;
overflow-y: hidden;
scrollbar-width: none;
-ms-overflow-style: none;
}
#blockchain-container::-webkit-scrollbar {
display: none;
}
.fade-border {
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 80%, transparent 100%)
}
2022-02-17 18:51:16 +09:00
.main-title {
position: relative;
2024-04-23 18:59:26 +02:00
color: var(--fg);
opacity: var(--opacity);
2022-02-17 18:51:16 +09:00
margin-top: -13px;
font-size: 10px;
text-transform: uppercase;
font-weight: 500;
text-align: center;
padding-bottom: 3px;
}
.more-padding {
padding: 24px 20px !important;
}
.card-wrapper {
.card {
height: auto !important;
}
.card-body {
display: flex;
flex: inherit;
text-align: center;
flex-direction: column;
justify-content: space-around;
padding: 22px 20px;
}
}
.skeleton-loader {
width: 100%;
display: block;
&:first-child {
max-width: 90px;
margin: 15px auto 3px;
}
&:last-child {
margin: 10px auto 3px;
max-width: 55px;
}
}
.card-text {
font-size: 22px;
}
.title-link, .title-link:hover, .title-link:focus, .title-link:active {
display: block;
margin-bottom: 10px;
text-decoration: none;
color: inherit;
2023-02-15 16:41:09 +09:00
}