diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-07-22 19:27:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-07-23 08:52:25 +0000 |
commit | 78edec0e2d8a3e1216d99234554276cb05505ac4 (patch) | |
tree | 6f1a3cfda8731ef3a19f5ae57c928054a0c5624f /build/font | |
parent | Initial commit. (diff) | |
download | bootstrap-icons-78edec0e2d8a3e1216d99234554276cb05505ac4.tar.xz bootstrap-icons-78edec0e2d8a3e1216d99234554276cb05505ac4.zip |
Adding upstream version 1.9.1+dfsg.upstream/1.9.1+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/font')
-rw-r--r-- | build/font/css.hbs | 24 | ||||
-rw-r--r-- | build/font/html.hbs | 53 | ||||
-rw-r--r-- | build/font/scss.hbs | 36 |
3 files changed, 113 insertions, 0 deletions
diff --git a/build/font/css.hbs b/build/font/css.hbs new file mode 100644 index 0000000..f651092 --- /dev/null +++ b/build/font/css.hbs @@ -0,0 +1,24 @@ +@font-face { + font-display: block; + font-family: "{{ name }}"; + src: {{{ fontSrc }}}; +} + +.{{prefix}}::before, +[class^="{{prefix}}-"]::before, +[class*=" {{prefix}}-"]::before { + display: inline-block; + font-family: {{ name }} !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + vertical-align: -.125em; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +{{# each codepoints }} +.{{ ../prefix }}-{{ @key }}::before { content: "\\{{ codepoint this }}"; } +{{/ each }} diff --git a/build/font/html.hbs b/build/font/html.hbs new file mode 100644 index 0000000..0639a3a --- /dev/null +++ b/build/font/html.hbs @@ -0,0 +1,53 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>{{ name }}</title> + + <style> + .icons { + display: grid; + max-width: 100%; + grid-template-columns: repeat(auto-fit, minmax(100px, 1fr) ); + gap: 1.25rem; + } + .icon { + background-color: var(--bs-light); + border-radius: .25rem; + } + .bi { + margin: .25rem; + font-size: 2.5rem; + } + .label { + font-family: var(--bs-font-monospace); + } + .label { + display: inline-block; + width: 100%; + overflow: hidden; + padding: .25rem; + font-size: .625rem; + text-overflow: ellipsis; + white-space: nowrap; + } + </style> + + <link rel="stylesheet" href="/assets/css/bootstrap.min.css"> + <link rel="stylesheet" href="{{ name }}.css"> +</head> +<body class="text-center"> + + <h1>{{ name }}</h1> + + <div class="icons"> + {{# each assets }} + <div class="icon"> + <{{ ../tag }} class="{{ ../prefix }} {{ ../prefix }}-{{ @key }}"></{{ ../tag }}> + <div class="label">{{ @key }}</div> + </div> + {{/ each }} + </div> + +</body> +</html> diff --git a/build/font/scss.hbs b/build/font/scss.hbs new file mode 100644 index 0000000..eb67a50 --- /dev/null +++ b/build/font/scss.hbs @@ -0,0 +1,36 @@ +${{ name }}-font: "{{ name }}" !default; +${{ name }}-font-dir: "{{ fontsUrl }}" !default; +${{ name }}-font-file: #{${{ name }}-font-dir}/#{${{ name }}-font} !default; +${{ name }}-font-hash: "8d200481aa7f02a2d63a331fc782cfaf" !default; +${{ name }}-font-src: url("#{${{ name }}-font-file}.woff2?#{${{ name }}-font-hash}") format("woff2"), url("#{${{ name }}-font-file}.woff?#{${{ name }}-font-hash}") format("woff") !default; + +@font-face { + font-display: block; + font-family: ${{ name }}-font; + src: ${{ name }}-font-src; +} + +.{{prefix}}::before, +[class^="{{prefix}}-"]::before, +[class*=" {{prefix}}-"]::before { + display: inline-block; + font-family: ${{ name }}-font !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + vertical-align: -.125em; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +${{ name }}-map: ( +{{# each codepoints }} + "{{ @key }}": "\\{{ codepoint this }}", +{{/ each }} +); + +{{# each codepoints }} +.{{ ../prefix }}-{{ @key }}::before { content: map-get(${{ ../name }}-map, "{{ @key }}"); } +{{/ each }} |