Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
blockscout/assets/css/components/_blocks.scss

65 lines
1.3 KiB

.blocks {
@extend %paper;
&__container {
padding: explorer-size(-1) explorer-size(0);
& + & { padding-top: 0; }
&--title { padding-top: explorer-size(0); }
}
&__headline-title,
&__title {
@include explorer-typography("title");
color: explorer-color("slate", "100");
margin: 0;
}
&__headline-title { line-height: 18px; }
&__table {
@extend %table;
@include explorer-typography("body1");
color: explorer-color("slate", "100");
}
&__column-header {
@include explorer-typography("body1");
&--optional { display: none; }
}
&__column {
&--optional { display: none; }
}
&__link { color: explorer-color("blue", "500"); }
&__pagination {
margin: explorer-size(-1) 0 explorer-size(-2) 0;
.pagination { text-align: right; }
}
}
@media (min-width: $explorer-breakpoint-sm) {
.blocks {
&__column-header {
&--optional { display: table-cell; }
}
&__column {
&--optional { display: table-cell; }
}
}
}
@media (min-width: $explorer-breakpoint-md) {
.blocks {
&__headline {
display: flex;
align-items: center;
justify-content: center;
}
&__headline-title { flex: 1; }
&__pagination {
margin: explorer-size(-1) 0 explorer-size(-2) 0;
}
}
}