Adds missing SVGs, moves assets locally instead of CDN for faster updates on new releases

This commit is contained in:
Andrew Gioia 2021-07-06 10:41:05 -04:00
parent 7bdfc5fb54
commit f7ece56c40
20 changed files with 345 additions and 15 deletions

View File

@ -2,8 +2,8 @@
* Global */
@font-face {
font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.8.0');
src: url('../fonts/keyrune.eot?#iefix&v=3.8.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.8.0') format('woff2'), url('../fonts/keyrune.woff?v=3.8.0') format('woff'), url('../fonts/keyrune.ttf?v=3.8.0') format('truetype'), url('../fonts/keyrune.svg?v=3.8.0#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.8.1');
src: url('../fonts/keyrune.eot?#iefix&v=3.8.1') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.8.1') format('woff2'), url('../fonts/keyrune.woff?v=3.8.1') format('woff'), url('../fonts/keyrune.ttf?v=3.8.1') format('truetype'), url('../fonts/keyrune.svg?v=3.8.1#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}

2
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

1
docs/assets/keyrune.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -4,8 +4,8 @@
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>Cheatsheet | Keyrune</title>
<link href="//cdn.jsdelivr.net/npm/keyrune@latest/css/keyrune.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" />
<link rel="stylesheet" href="assets/keyrune.min.css" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
</head>

View File

@ -4,8 +4,8 @@
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>Examples | Keyrune</title>
<link href="//cdn.jsdelivr.net/npm/keyrune@latest/css/keyrune.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" />
<link rel="stylesheet" href="assets/keyrune.min.css" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
</head>

BIN
docs/fonts/keyrune.eot Normal file

Binary file not shown.

313
docs/fonts/keyrune.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 627 KiB

BIN
docs/fonts/keyrune.ttf Normal file

Binary file not shown.

BIN
docs/fonts/keyrune.woff Normal file

Binary file not shown.

BIN
docs/fonts/keyrune.woff2 Normal file

Binary file not shown.

View File

@ -4,8 +4,8 @@
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>Set Symbol Icons | Keyrune</title>
<link href="//cdn.jsdelivr.net/npm/keyrune@latest/css/keyrune.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" />
<link rel="stylesheet" href="assets/keyrune.min.css" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
</head>

View File

@ -4,8 +4,8 @@
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>Keyrune | Andrew Gioia</title>
<link href="//cdn.jsdelivr.net/npm/keyrune@latest/css/keyrune.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" />
<link rel="stylesheet" href="assets/keyrune.min.css" type="text/css" />
<link rel="stylesheet" href="assets/docs.css" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
</head>

View File

@ -2,6 +2,6 @@
* Global */
@ss-font-path: '../fonts';
@ss-version: '3.8.0';
@ss-version: '3.8.1';
@ss-font-size-base: 14px;
@ss-prefix: ss;

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"description": "Keyrune",
"version": "3.8.0",
"version": "3.8.1",
"author": {
"name": "Andrew Gioia",
"email": "andrew@gioia.email",
@ -31,7 +31,8 @@
"lessmin": "lessc --clean-css less/keyrune.less css/keyrune.min.css",
"sass": "sass sass/keyrune.scss css/keyrune.css --style=expanded",
"sassmin": "sass sass/keyrune.scss css/keyrune.css --style=compressed",
"watch": "sass --no-source-map --watch sass/keyrune.scss css/keyrune.css --style=expanded"
"watch": "sass --no-source-map --watch sass/keyrune.scss css/keyrune.css --style=expanded",
"build": "cp fonts/* docs/fonts && cp css/keyrune.min.css docs/assets/keyrune.min.css"
},
"ignore": [
"*/.*",

View File

@ -1,7 +1,7 @@
/**
* Globals */
$keyrune_version: '3.8.0' !default;
$keyrune_version: '3.8.1' !default;
$keyrune_font_path: '../fonts' !default;
// font specific

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

5
svg/c21-border.svg Normal file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>c21-border</title>
<path fill="#444" d="M13.296 1.255l0.5 0.002c1.169 0.085 0.67 0.027 1.501 0.141 1.292 0.195 2.546 0.565 3.798 0.929-0.195 0.813-0.558 1.715-0.153 2.521 0.455 0.969 1.849 1.306 2.686 0.625 0.451-0.402 0.778-0.92 1.157-1.387 1.563 1.55 2.346 3.643 3.171 5.636 0.198 0.509 0.439 1.008 0.544 1.552-0.75 1.54-1.768 2.943-2.53 4.479-0.156 1.977 0.1 3.986-0.119 5.952-1.696 3.292-4.453 6.019-7.676 7.827-0.943 0.481-1.889 1.013-2.925 1.255-3.396-1.055-6.349-3.308-8.603-6.031-0.774-1.004-1.566-2.030-2.051-3.208-0.109-1.933 0.058-3.877-0.072-5.808-0.767-1.524-1.761-2.93-2.525-4.458 0.102-0.541 0.353-1.038 0.555-1.55 0.839-1.984 1.642-4.052 3.152-5.638 0.379 0.46 0.709 0.966 1.155 1.368 0.829 0.695 2.242 0.365 2.695-0.611 0.411-0.806 0.046-1.71-0.156-2.521 1.749-0.556 3.554-0.992 5.395-1.067l0.5-0.007zM13.27 2.35c-1.522 0.016-3.022 0.33-4.481 0.748 0.316 1.361-0.235 2.857-1.475 3.554-1.255 0.588-2.741 0.258-3.664-0.762-1.029 1.656-1.749 3.482-2.451 5.294 0.718 1.173 1.373 2.384 2.084 3.561 0.151 0.286 0.358 0.572 0.362 0.911 0.063 1.865-0.065 3.738 0.049 5.601 0.476 1.048 1.122 2.126 1.947 2.936 2.030 2.416 4.642 4.354 7.608 5.459 2.969-1.104 5.58-3.043 7.615-5.457l-0.007-0.074c0.811-0.822 1.477-1.805 1.949-2.857 0.123-1.93-0.044-3.873 0.070-5.803 0.716-1.47 1.622-2.853 2.428-4.279-0.69-1.824-1.394-3.661-2.428-5.325-0.857 0.98-2.209 1.315-3.441 0.934-1.373-0.65-2.079-2.228-1.721-3.696-1.447-0.414-2.934-0.725-4.444-0.746zM12.717 3.635c0.086 4.172 0.146 8.347 0.112 12.519-0.783 0.316-1.608 0.669-2.121 1.375-0.832 1.013-0.869 2.553-0.128 3.629 0.423 0.695 1.155 1.092 1.849 1.461-0.572 1.215-1.454 2.4-1.322 3.812-1.652-0.142-2.981-1.21-4.084-2.358 1.538-0.3 2.86-1.268 3.668-2.6-1.366 0.527-2.818 0.869-4.072 1.64-0.295-0.346-0.581-0.702-0.836-1.078-0.481-1.145-0.871-2.325-1.168-3.531 0.307 0.158 0.613 0.323 0.925 0.472 1.371 0.581 2.864 0.76 4.34 0.811-1.461-0.86-2.876-1.807-4.388-2.579-0.211 0.002-0.637 0.007-0.848 0.009-0.107-2.119 0.4-4.314 1.803-5.954 0.214 0.421 0.432 0.839 0.641 1.264 0.908 1.882 1.975 3.694 3.229 5.367-0.146-2.23-0.302-4.472-0.767-6.663-0.135-0.781-0.578-1.452-1.083-2.042 0.249-0.945 0.62-1.865 1.194-2.662 0.785-1.187 1.97-2.010 3.057-2.892zM10.828 22.394c-0.678 0.871-1.559 1.564-2.569 2.012 0.646 0.525 1.352 0.971 2.123 1.282 0.295-0.971 0.734-1.886 1.187-2.792-0.246-0.167-0.495-0.335-0.741-0.502zM5.566 19.715c0.286 0.878 0.62 1.745 1.101 2.539 1.032-0.43 2.102-0.757 3.146-1.159-0.091-0.228-0.181-0.453-0.27-0.678-1.35-0.056-2.697-0.253-3.977-0.702zM6.317 12.439c-0.718 1.22-1.057 2.625-1.062 4.038 1.547 0.465 2.802 1.552 4.21 2.309 0.046-0.179 0.144-0.537 0.191-0.716-1.306-1.754-2.386-3.666-3.338-5.631zM12.111 4.924c-1.385 1.011-2.46 2.43-2.964 4.077 0.423 0.537 0.788 1.131 0.932 1.81 0.448 1.833 0.602 3.724 0.762 5.601 0.441-0.283 0.894-0.546 1.364-0.781 0.009-3.571 0.007-7.139-0.093-10.707zM13.788 3.642c1.926 1.371 3.745 3.148 4.251 5.55-0.506 0.59-0.95 1.259-1.085 2.040-0.465 2.191-0.616 4.435-0.764 6.665 1.252-1.673 2.319-3.482 3.229-5.362 0.211-0.427 0.43-0.848 0.643-1.271 1.396 1.645 1.914 3.835 1.791 5.956-0.209-0.005-0.63-0.009-0.841-0.014-1.51 0.771-2.922 1.724-4.386 2.579 1.475-0.053 2.971-0.221 4.34-0.808 0.309-0.149 0.611-0.311 0.915-0.465-0.288 1.201-0.681 2.377-1.157 3.517-0.258 0.379-0.544 0.736-0.834 1.090-1.257-0.776-2.711-1.12-4.077-1.645 0.811 1.331 2.13 2.3 3.668 2.602-1.104 1.145-2.435 2.207-4.082 2.353 0.125-1.41-0.75-2.597-1.324-3.81 0.699-0.367 1.429-0.771 1.854-1.466 0.741-1.076 0.702-2.616-0.13-3.629-0.516-0.702-1.336-1.055-2.119-1.366-0.023-4.172 0.007-8.345 0.107-12.517zM15.672 22.396l-0.743 0.502c0.453 0.904 0.897 1.819 1.19 2.792 0.771-0.314 1.477-0.76 2.123-1.285-1.008-0.451-1.891-1.138-2.569-2.009zM20.934 19.715c-1.282 0.448-2.63 0.646-3.982 0.702-0.086 0.228-0.172 0.455-0.258 0.683 1.041 0.397 2.109 0.727 3.141 1.155 0.476-0.794 0.811-1.661 1.099-2.539zM20.181 12.446c-0.957 1.961-2.035 3.868-3.338 5.622 0.049 0.179 0.146 0.539 0.195 0.718 1.405-0.76 2.662-1.842 4.207-2.309-0.005-1.41-0.337-2.816-1.064-4.031zM14.387 4.922c-0.095 3.568-0.105 7.139-0.093 10.707 0.469 0.235 0.925 0.495 1.368 0.776 0.158-1.873 0.311-3.759 0.757-5.59 0.142-0.681 0.509-1.278 0.936-1.814-0.502-1.649-1.582-3.069-2.969-4.079z"></path>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

5
svg/c21.svg Normal file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32">
<title>c21</title>
<path fill="#444" d="M5.399 23.941c-0.739-0.771-1.249-1.777-1.706-2.683-0.114-1.863 0.014-3.736-0.049-5.601-0.005-0.339-0.211-0.625-0.362-0.911-0.711-1.178-1.366-2.388-2.084-3.561 0.702-1.812 1.422-3.638 2.451-5.294 0.922 1.020 2.409 1.35 3.664 0.762v0c1.241-0.697 1.791-2.193 1.475-3.554 1.459-0.418 2.96-0.732 4.481-0.748 1.51 0.021 2.997 0.332 4.444 0.746-0.358 1.468 0.349 3.046 1.721 3.696 1.372 0.367 2.439 0.049 3.441-0.934 1.034 1.663 1.738 3.501 2.428 5.325-0.806 1.426-1.712 2.809-2.428 4.279-0.114 1.931 0.053 3.873-0.070 5.803-0.466 1.069-1.154 2.013-1.949 2.857v0l0.007 0.074c-2.035 2.414-4.646 4.354-7.615 5.457-2.967-1.106-5.578-3.043-7.608-5.459l-0.241-0.254zM6.767 11.894l-0.322-0.63c-1.403 1.64-1.91 3.835-1.803 5.954 0.211-0.002 0.637-0.007 0.848-0.009v0c1.507 0.781 2.936 1.702 4.388 2.579-1.475-0.051-2.969-0.23-4.34-0.811l-0-0c-0.619-0.31-0.311-0.153-0.925-0.472 0.297 1.206 0.688 2.386 1.169 3.531-0.038 1.060-0.004 0.695-0.042 1.098 0.002-0.019 0.004-0.039 0.005-0.058 0 0 0 0 0 0l0.037-1.040c0.255 0.376 0.541 0.732 0.836 1.078 1.255-0.771 2.706-1.113 4.072-1.64-0.808 1.331-2.13 2.3-3.668 2.6 1.104 1.148 2.432 2.216 4.084 2.358-0.132-1.412 0.75-2.597 1.322-3.812-0.695-0.369-1.426-0.767-1.849-1.461-0.741-1.076-0.704-2.616 0.128-3.629 0.513-0.706 1.338-1.059 2.121-1.375 0.035-4.172-0.026-8.347-0.112-12.519-1.087 0.883-2.272 1.705-3.057 2.892-0.574 0.797-0.946 1.717-1.194 2.662 0.504 0.59 0.948 1.261 1.083 2.042 0.465 2.191 0.62 4.432 0.767 6.663-1.254-1.673-2.321-3.485-3.229-5.366v-0l-0.319-0.634zM13.788 3.642c-0.1 4.172-0.13 8.345-0.107 12.517 0.783 0.311 1.603 0.664 2.119 1.366 0.832 1.013 0.871 2.553 0.13 3.629-0.425 0.695-1.155 1.099-1.854 1.466 0.574 1.213 1.45 2.4 1.324 3.81 1.647-0.146 2.978-1.208 4.082-2.353-1.538-0.302-2.857-1.271-3.668-2.602 1.366 0.525 2.82 0.869 4.077 1.645 0.572-0.714 0.294-0.351 0.834-1.090v0c0.476-1.141 0.869-2.316 1.157-3.517-0.608 0.312-0.303 0.157-0.915 0.465v0c-1.368 0.588-2.864 0.755-4.34 0.808 1.452-0.879 2.895-1.767 4.386-2.579v-0l0.191 0.003c0.523 0.008 0.307 0.004 0.65 0.010 0.123-2.121-0.395-4.312-1.791-5.957-0.43 0.845-0.216 0.422-0.643 1.271v0c-0.911 1.879-1.977 3.689-3.229 5.362 0.149-2.23 0.3-4.474 0.764-6.665 0.135-0.781 0.578-1.45 1.085-2.040-0.506-2.402-2.325-4.179-4.251-5.55z"></path>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

5
svg/sta.svg Normal file
View File

@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>sta</title>
<path fill="#444" d="M23.675 24.069c-2.172 0.296-4.376 0.714-6.288-0.613 0.281-0.375 0.57-0.742 0.862-1.106 0.092-1.832-0.078-3.664-0.306-5.479-0.347 1.515-0.384 3.094-0.906 4.57-2.755-0.4-5.557-0.075-8.2 0.792v0c-0.973 0.353-1.96 0.737-2.746 1.434 0.901-0.136 1.779-0.384 2.657-0.62 0.567 0.767 1.295 1.393 2.021 2.001-0.475 1.409-1.896 1.924-3.191 2.31-0.192 0.489-0.386 0.979-0.578 1.468-0.322-0.425-0.645-0.848-0.967-1.27-0.959-0.145-2.099 0.031-2.871-0.675-0.245-0.214-0.464-0.453-0.7-0.67 0.411-0.65 0.817-1.304 1.223-1.957-0.792-5.076-1.423-10.177-2.174-15.258-0.5-0.456-1.003-0.909-1.509-1.357 0.114-0.595 0.095-1.334 0.67-1.704 0.584-0.381 1.298-0.475 1.96-0.664 0.27-0.692 0.528-1.387 0.787-2.085 0.436 0.587 0.873 1.17 1.312 1.751 1.32-0.234 3.172 0.017 3.336 1.654-1.407 0.848-3.074 1.376-4.083 2.76 0.956-0.356 1.848-0.864 2.757-1.323v0c2.924-1.156 6.202-1.848 9.301-0.987 0.075 0.053 0.231 0.158 0.308 0.211 0.812 1.74 0.873 3.705 1.298 5.554 0.211-0.876-0.136-1.968 0.484-2.702 1.284-0.133 2.582-0.145 3.867-0.311l0.013-0.001c1.248-0.264 2.402-0.75 3.423-1.539-0.973 0.106-1.932 0.3-2.894 0.484-0.467-0.409-0.931-0.82-1.398-1.231 0.259-0.553 0.403-1.206 0.881-1.621 0.628-0.37 1.362-0.478 2.057-0.667 0.247-0.681 0.5-1.362 0.756-2.043 0.431 0.589 0.859 1.179 1.293 1.762 0.734 0.017 1.504-0.106 2.207 0.161 0.503 0.27 0.781 0.806 1.134 1.231-0.411 0.645-0.82 1.293-1.229 1.938 0.617 4.103 1.156 8.217 1.74 12.325 0.159 0.973 0.186 1.976 0.484 2.922 0.428 0.564 1.009 0.99 1.537 1.454-0.247 1.49-1.773 1.946-3.002 2.374-0.192 0.495-0.386 0.99-0.575 1.484-0.328-0.422-0.656-0.839-0.984-1.259-1.362 0.036-2.855-0.136-3.697-1.351 0.37-0.539 0.684-1.131 1.162-1.587 0.756-0.556 1.601-1.006 2.218-1.735-1.017 0.353-1.99 0.834-3.030 1.12l-0.416 0.055z"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB