2022-02-16 17:32:12 +09:00
|
|
|
.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-02-25 21:16:35 +09:00
|
|
|
}
|
2022-02-16 17:32:12 +09:00
|
|
|
|
2022-05-12 17:05:31 +02:00
|
|
|
.graph-card {
|
|
|
|
height: 100%;
|
|
|
|
@media (min-width: 992px) {
|
|
|
|
height: 385px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-07 23:26:06 +00:00
|
|
|
.fixed-mempool-graph {
|
|
|
|
height: 330px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mempool-graph, .fixed-mempool-graph {
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
height: 345px;
|
|
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
2024-02-08 22:50:47 +00:00
|
|
|
height: 440px;
|
2024-02-07 23:26:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-21 23:36:05 +09:00
|
|
|
.card-title {
|
|
|
|
font-size: 1rem;
|
2023-01-03 05:24:14 -06:00
|
|
|
color: var(--title-fg);
|
2022-02-21 23:36:05 +09:00
|
|
|
}
|
2022-02-22 20:15:15 +09:00
|
|
|
.card-title > a {
|
2023-01-03 05:24:14 -06:00
|
|
|
color: var(--title-fg);
|
2022-02-22 20:15:15 +09:00
|
|
|
}
|
2022-02-21 23:36:05 +09:00
|
|
|
|
2022-02-22 20:15:15 +09:00
|
|
|
.card-body.pool-ranking {
|
|
|
|
padding: 1.25rem 0.25rem 0.75rem 0.25rem;
|
2022-02-16 17:32:12 +09:00
|
|
|
}
|
2022-03-12 17:56:00 +01:00
|
|
|
.card-text {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
2022-02-16 17:32:12 +09:00
|
|
|
|
2022-02-17 16:09:10 +09:00
|
|
|
#blockchain-container {
|
2022-02-16 17:32:12 +09:00
|
|
|
position: relative;
|
2022-02-17 16:09:10 +09:00
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
|
|
|
scrollbar-width: none;
|
|
|
|
-ms-overflow-style: none;
|
2022-02-16 17:32:12 +09:00
|
|
|
}
|
|
|
|
|
2022-02-17 16:09:10 +09:00
|
|
|
#blockchain-container::-webkit-scrollbar {
|
|
|
|
display: none;
|
2022-02-16 17:32:12 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.fade-border {
|
2022-02-17 16:09:10 +09:00
|
|
|
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 80%, transparent 100%)
|
2022-02-16 17:32:12 +09:00
|
|
|
}
|
2022-03-07 19:54:17 +01:00
|
|
|
|
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;
|
|
|
|
}
|
2022-03-07 11:22:54 +01:00
|
|
|
|
2022-03-13 11:38:45 +01:00
|
|
|
.more-padding {
|
2022-06-01 12:53:36 +02:00
|
|
|
padding: 24px 20px !important;
|
2022-03-13 11:38:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2022-03-07 11:22:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 19:54:17 +01:00
|
|
|
.skeleton-loader {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
&:first-child {
|
|
|
|
max-width: 90px;
|
|
|
|
margin: 15px auto 3px;
|
2022-03-07 11:22:54 +01:00
|
|
|
}
|
2022-03-07 19:54:17 +01:00
|
|
|
&:last-child {
|
|
|
|
margin: 10px auto 3px;
|
|
|
|
max-width: 55px;
|
2022-03-07 11:22:54 +01:00
|
|
|
}
|
|
|
|
}
|
2022-03-14 18:06:54 +01:00
|
|
|
|
|
|
|
.card-text {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
2022-06-14 10:35:29 +02:00
|
|
|
|
|
|
|
.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
|
|
|
}
|