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/explorer/_typography.scss

24 lines
588 B

$explorer-typography-styles: (
headline: (
"font-weight": 400,
"font-size": 24px,
"line-height": 32px
),
title: (
"font-weight": 400,
"font-size": 18px,
"line-height": 28px
),
body1: (
"font-weight": 400,
"font-size": 13px,
"line-height": 36px
)
);
@mixin explorer-typography($style) {
font-weight: map-get(map-get($explorer-typography-styles, $style), "font-weight");
font-size: map-get(map-get($explorer-typography-styles, $style), "font-size");
line-height: map-get(map-get($explorer-typography-styles, $style), "line-height");
}