mirror of
https://github.com/konpa/devicon.git
synced 2025-08-24 15:13:00 +02:00
Merge pull request #281 from amacado/master
Enhancing build scripts (bugfixing, documentation, introducing gulp, cleanup)
This commit is contained in:
2
.github/scripts/build_assets/filehandler.py
vendored
2
.github/scripts/build_assets/filehandler.py
vendored
@@ -63,7 +63,7 @@ def get_svgs_paths(new_icons: List[dict], icons_folder_path: str) -> List[str]:
|
|||||||
try:
|
try:
|
||||||
aliases = icon_info["aliases"]
|
aliases = icon_info["aliases"]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
continue
|
aliases = [] # create empty list of aliases if not provided in devicon.json
|
||||||
|
|
||||||
for font_version in icon_info["versions"]["font"]:
|
for font_version in icon_info["versions"]["font"]:
|
||||||
if is_alias(font_version, aliases):
|
if is_alias(font_version, aliases):
|
||||||
|
@@ -1 +1,6 @@
|
|||||||
This folder was taken from: https://github.com/mozilla/geckodriver/releases/tag/v0.27.0
|
## geckodriver
|
||||||
|
Proxy for using W3C WebDriver compatible clients to interact with Gecko-based browsers.
|
||||||
|
This program provides the HTTP API described by the WebDriver protocol to communicate with Gecko browsers, such as Firefox.
|
||||||
|
It translates calls into the Marionette remote protocol by acting as a proxy between the local- and remote ends.
|
||||||
|
|
||||||
|
This application was taken from: https://github.com/mozilla/geckodriver/releases/tag/v0.27.0
|
||||||
|
3
.github/scripts/icomoon_upload.py
vendored
3
.github/scripts/icomoon_upload.py
vendored
@@ -43,6 +43,9 @@ def main():
|
|||||||
print("No files need to be uploaded. Ending script...")
|
print("No files need to be uploaded. Ending script...")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# print list of new icons, separated by comma
|
||||||
|
print("List of new icons:")
|
||||||
|
print(*new_icons, sep = "\n")
|
||||||
try:
|
try:
|
||||||
runner = SeleniumRunner(args.icomoon_json_path, args.download_path,
|
runner = SeleniumRunner(args.icomoon_json_path, args.download_path,
|
||||||
args.geckodriver_path, args.headless)
|
args.geckodriver_path, args.headless)
|
||||||
|
12
.github/workflows/build_icons.yml
vendored
12
.github/workflows/build_icons.yml
vendored
@@ -14,14 +14,15 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.head_ref }}
|
ref: ${{ github.head_ref }}
|
||||||
- name: Set up Python 3.8
|
- name: Setup Python v3.8
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.8
|
python-version: 3.8
|
||||||
- name: Install dependencies
|
- name: Install dependencies (python, pip, npm)
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -r ./.github/scripts/requirements.txt
|
pip install -r ./.github/scripts/requirements.txt
|
||||||
|
npm install
|
||||||
- name: Run icomoon_upload.py
|
- name: Run icomoon_upload.py
|
||||||
run: >
|
run: >
|
||||||
python ./.github/scripts/icomoon_upload.py
|
python ./.github/scripts/icomoon_upload.py
|
||||||
@@ -30,9 +31,12 @@ jobs:
|
|||||||
- name: Upload geckodriver.log for debugging purposes
|
- name: Upload geckodriver.log for debugging purposes
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
name: geckodriver-log
|
||||||
path: ./geckodriver.log
|
path: ./geckodriver.log
|
||||||
|
- name: Running gulp default task for building devicon.min.css
|
||||||
|
run: |
|
||||||
|
gulp default
|
||||||
- name: Commit changes
|
- name: Commit changes
|
||||||
uses: stefanzweifel/git-auto-commit-action@v4
|
uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
with:
|
with:
|
||||||
commit_message: Built new icons, icomoon.json and devicon.css
|
commit_message: Build new icons, icomoon.json and devicon.css
|
||||||
branch: build-integrate
|
|
||||||
|
@@ -1,756 +0,0 @@
|
|||||||
@font-face {
|
|
||||||
font-family: 'devicon';
|
|
||||||
src: url('fonts/devicon.eot?yl3aib');
|
|
||||||
src: url('fonts/devicon.eot?yl3aib#iefix') format('embedded-opentype'),
|
|
||||||
url('fonts/devicon.ttf?yl3aib') format('truetype'),
|
|
||||||
url('fonts/devicon.woff?yl3aib') format('woff'),
|
|
||||||
url('fonts/devicon.svg?yl3aib#devicon') format('svg');
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
[class^="devicon-"], [class*=" devicon-"] {
|
|
||||||
/* use !important to prevent issues with browser extensions that change fonts */
|
|
||||||
font-family: 'devicon' !important;
|
|
||||||
speak: never;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
font-variant: normal;
|
|
||||||
text-transform: none;
|
|
||||||
line-height: 1;
|
|
||||||
|
|
||||||
/* Better Font Rendering =========== */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
.devicon-haskell-plain:before {
|
|
||||||
content: "\e95f";
|
|
||||||
}
|
|
||||||
.devicon-haskell-plain-wordmark:before {
|
|
||||||
content: "\e960";
|
|
||||||
}
|
|
||||||
.devicon-codepen-original-wordmark:before {
|
|
||||||
content: "\e95d";
|
|
||||||
}
|
|
||||||
.devicon-codepen-plain:before {
|
|
||||||
content: "\e95e";
|
|
||||||
}
|
|
||||||
.devicon-groovy-plain:before {
|
|
||||||
content: "\e958";
|
|
||||||
}
|
|
||||||
.devicon-rust-plain:before {
|
|
||||||
content: "\e959";
|
|
||||||
}
|
|
||||||
.devicon-scala-plain-wordmark:before {
|
|
||||||
content: "\e95a";
|
|
||||||
}
|
|
||||||
.devicon-scala-plain:before {
|
|
||||||
content: "\e95b";
|
|
||||||
}
|
|
||||||
.devicon-grails-plain:before {
|
|
||||||
content: "\e95c";
|
|
||||||
}
|
|
||||||
.devicon-sketch-line-wordmark:before {
|
|
||||||
content: "\e94c";
|
|
||||||
}
|
|
||||||
.devicon-sketch-line:before {
|
|
||||||
content: "\e94d";
|
|
||||||
}
|
|
||||||
.devicon-npm-original-wordmark:before {
|
|
||||||
content: "\e952";
|
|
||||||
}
|
|
||||||
.devicon-ionic-original-wordmark:before {
|
|
||||||
content: "\e953";
|
|
||||||
}
|
|
||||||
.devicon-ionic-original:before {
|
|
||||||
content: "\e954";
|
|
||||||
}
|
|
||||||
.devicon-ember-original-wordmark:before {
|
|
||||||
content: "\e955";
|
|
||||||
}
|
|
||||||
.devicon-electron-original-wordmark:before {
|
|
||||||
content: "\e956";
|
|
||||||
}
|
|
||||||
.devicon-electron-original:before {
|
|
||||||
content: "\e957";
|
|
||||||
}
|
|
||||||
.devicon-vagrant-plain-wordmark:before {
|
|
||||||
content: "\e94e";
|
|
||||||
}
|
|
||||||
.devicon-vagrant-plain:before {
|
|
||||||
content: "\e94f";
|
|
||||||
}
|
|
||||||
.devicon-yarn-plain-wordmark:before {
|
|
||||||
content: "\e950";
|
|
||||||
}
|
|
||||||
.devicon-yarn-plain:before {
|
|
||||||
content: "\e951";
|
|
||||||
}
|
|
||||||
.devicon-handlebars-plain-wordmark:before {
|
|
||||||
content: "\e94a";
|
|
||||||
}
|
|
||||||
.devicon-handlebars-plain:before {
|
|
||||||
content: "\e94b";
|
|
||||||
}
|
|
||||||
.devicon-couchdb-plain-wordmark:before {
|
|
||||||
content: "\e948";
|
|
||||||
}
|
|
||||||
.devicon-couchdb-plain:before {
|
|
||||||
content: "\e949";
|
|
||||||
}
|
|
||||||
.devicon-behance-plain-wordmark:before {
|
|
||||||
content: "\e943";
|
|
||||||
}
|
|
||||||
.devicon-behance-plain:before {
|
|
||||||
content: "\e945";
|
|
||||||
}
|
|
||||||
.devicon-linkedin-plain-wordmark:before {
|
|
||||||
content: "\e946";
|
|
||||||
}
|
|
||||||
.devicon-linkedin-plain:before {
|
|
||||||
content: "\e947";
|
|
||||||
}
|
|
||||||
.devicon-ceylon-plain:before {
|
|
||||||
content: "\e944";
|
|
||||||
}
|
|
||||||
.devicon-elm-plain-wordmark:before {
|
|
||||||
content: "\e941";
|
|
||||||
}
|
|
||||||
.devicon-elm-plain:before {
|
|
||||||
content: "\e942";
|
|
||||||
}
|
|
||||||
.devicon-cakephp-plain-wordmark:before {
|
|
||||||
content: "\e93f";
|
|
||||||
}
|
|
||||||
.devicon-cakephp-plain:before {
|
|
||||||
content: "\e940";
|
|
||||||
}
|
|
||||||
.devicon-stylus-original:before {
|
|
||||||
content: "\e93e";
|
|
||||||
}
|
|
||||||
.devicon-express-original-wordmark:before {
|
|
||||||
content: "\e93c";
|
|
||||||
}
|
|
||||||
.devicon-express-original:before {
|
|
||||||
content: "\e93d";
|
|
||||||
}
|
|
||||||
.devicon-devicon-plain-wordmark:before {
|
|
||||||
content: "\e93a";
|
|
||||||
}
|
|
||||||
.devicon-devicon-plain:before {
|
|
||||||
content: "\e93b";
|
|
||||||
}
|
|
||||||
.devicon-intellij-plain-wordmark:before {
|
|
||||||
content: "\e932";
|
|
||||||
}
|
|
||||||
.devicon-intellij-plain:before {
|
|
||||||
content: "\e933";
|
|
||||||
}
|
|
||||||
.devicon-pycharm-plain-wordmark:before {
|
|
||||||
content: "\e934";
|
|
||||||
}
|
|
||||||
.devicon-pycharm-plain:before {
|
|
||||||
content: "\e935";
|
|
||||||
}
|
|
||||||
.devicon-rubymine-plain-wordmark:before {
|
|
||||||
content: "\e936";
|
|
||||||
}
|
|
||||||
.devicon-rubymine-plain:before {
|
|
||||||
content: "\e937";
|
|
||||||
}
|
|
||||||
.devicon-webstorm-plain-wordmark:before {
|
|
||||||
content: "\e938";
|
|
||||||
}
|
|
||||||
.devicon-webstorm-plain:before {
|
|
||||||
content: "\e939";
|
|
||||||
}
|
|
||||||
.devicon-tomcat-line-wordmark:before {
|
|
||||||
content: "\e92c";
|
|
||||||
}
|
|
||||||
.devicon-tomcat-line:before {
|
|
||||||
content: "\e92d";
|
|
||||||
}
|
|
||||||
.devicon-vuejs-line-wordmark:before {
|
|
||||||
content: "\e92e";
|
|
||||||
}
|
|
||||||
.devicon-vuejs-line:before {
|
|
||||||
content: "\e92f";
|
|
||||||
}
|
|
||||||
.devicon-vuejs-plain-wordmark:before {
|
|
||||||
content: "\e930";
|
|
||||||
}
|
|
||||||
.devicon-vuejs-plain:before {
|
|
||||||
content: "\e931";
|
|
||||||
}
|
|
||||||
.devicon-swift-plain-wordmark:before {
|
|
||||||
content: "\e92a";
|
|
||||||
}
|
|
||||||
.devicon-swift-plain:before {
|
|
||||||
content: "\e92b";
|
|
||||||
}
|
|
||||||
.devicon-webpack-plain-wordmark:before {
|
|
||||||
content: "\e928";
|
|
||||||
}
|
|
||||||
.devicon-webpack-plain:before {
|
|
||||||
content: "\e929";
|
|
||||||
}
|
|
||||||
.devicon-visualstudio-plain-wordmark:before {
|
|
||||||
content: "\e926";
|
|
||||||
}
|
|
||||||
.devicon-visualstudio-plain:before {
|
|
||||||
content: "\e927";
|
|
||||||
}
|
|
||||||
.devicon-slack-plain-wordmark:before {
|
|
||||||
content: "\e924";
|
|
||||||
}
|
|
||||||
.devicon-slack-plain:before {
|
|
||||||
content: "\e925";
|
|
||||||
}
|
|
||||||
.devicon-sequelize-plain-wordmark:before {
|
|
||||||
content: "\e922";
|
|
||||||
}
|
|
||||||
.devicon-sequelize-plain:before {
|
|
||||||
content: "\e923";
|
|
||||||
}
|
|
||||||
.devicon-typescript-plain:before {
|
|
||||||
content: "\e920";
|
|
||||||
}
|
|
||||||
.devicon-babel-plain:before {
|
|
||||||
content: "\e921";
|
|
||||||
}
|
|
||||||
.devicon-facebook-plain:before {
|
|
||||||
content: "\e91c";
|
|
||||||
}
|
|
||||||
.devicon-google-plain-wordmark:before {
|
|
||||||
content: "\e91d";
|
|
||||||
}
|
|
||||||
.devicon-google-plain:before {
|
|
||||||
content: "\e91e";
|
|
||||||
}
|
|
||||||
.devicon-twitter-original:before {
|
|
||||||
content: "\e91f";
|
|
||||||
}
|
|
||||||
.devicon-mocha:before {
|
|
||||||
content: "\e919";
|
|
||||||
}
|
|
||||||
.devicon-jasmine-plain:before {
|
|
||||||
content: "\e91a";
|
|
||||||
}
|
|
||||||
.devicon-jasmine-wordmark:before {
|
|
||||||
content: "\e91b";
|
|
||||||
}
|
|
||||||
.devicon-gatling-plain:before {
|
|
||||||
content: "\e917";
|
|
||||||
}
|
|
||||||
.devicon-gatling-plain-wordmark:before {
|
|
||||||
content: "\e918";
|
|
||||||
}
|
|
||||||
.devicon-phpstorm-plain:before {
|
|
||||||
content: "\e911";
|
|
||||||
}
|
|
||||||
.devicon-phpstorm-plain-wordmark:before {
|
|
||||||
content: "\e912";
|
|
||||||
}
|
|
||||||
.devicon-sourcetree-original:before {
|
|
||||||
content: "\e913";
|
|
||||||
}
|
|
||||||
.devicon-sourcetree-original-wordmark:before {
|
|
||||||
content: "\e914";
|
|
||||||
}
|
|
||||||
.devicon-ssh-original:before {
|
|
||||||
content: "\e915";
|
|
||||||
}
|
|
||||||
.devicon-ssh-original-wordmark:before {
|
|
||||||
content: "\e916";
|
|
||||||
}
|
|
||||||
.devicon-jeet-plain:before {
|
|
||||||
content: "\e903";
|
|
||||||
}
|
|
||||||
.devicon-jeet-plain-wordmark:before {
|
|
||||||
content: "\e906";
|
|
||||||
}
|
|
||||||
.devicon-gitlab-plain:before {
|
|
||||||
content: "\e907";
|
|
||||||
}
|
|
||||||
.devicon-gitlab-plain-wordmark:before {
|
|
||||||
content: "\e908";
|
|
||||||
}
|
|
||||||
.devicon-github-original:before {
|
|
||||||
content: "\e909";
|
|
||||||
}
|
|
||||||
.devicon-github-original-wordmark:before {
|
|
||||||
content: "\e90a";
|
|
||||||
}
|
|
||||||
.devicon-d3js-plain:before {
|
|
||||||
content: "\e90b";
|
|
||||||
}
|
|
||||||
.devicon-d3js-original:before {
|
|
||||||
content: "\e90c";
|
|
||||||
}
|
|
||||||
.devicon-confluence-original:before {
|
|
||||||
content: "\e90d";
|
|
||||||
}
|
|
||||||
.devicon-confluence-original-wordmark:before {
|
|
||||||
content: "\e90e";
|
|
||||||
}
|
|
||||||
.devicon-bitbucket-original:before {
|
|
||||||
content: "\e90f";
|
|
||||||
}
|
|
||||||
.devicon-bitbucket-original-wordmark:before {
|
|
||||||
content: "\e910";
|
|
||||||
}
|
|
||||||
.devicon-gradle-plain:before {
|
|
||||||
content: "\e902";
|
|
||||||
}
|
|
||||||
.devicon-gradle-plain-wordmark:before {
|
|
||||||
content: "\e8f1";
|
|
||||||
}
|
|
||||||
.devicon-cucumber-plain:before {
|
|
||||||
content: "\e904";
|
|
||||||
}
|
|
||||||
.devicon-cucumber-plain-wordmark:before {
|
|
||||||
content: "\e905";
|
|
||||||
}
|
|
||||||
.devicon-protractor-plain:before {
|
|
||||||
content: "\e900";
|
|
||||||
}
|
|
||||||
.devicon-protractor-plain-wordmark:before {
|
|
||||||
content: "\e901";
|
|
||||||
}
|
|
||||||
.devicon-safari-line-wordmark:before {
|
|
||||||
content: "\e632";
|
|
||||||
}
|
|
||||||
.devicon-safari-line:before {
|
|
||||||
content: "\e63a";
|
|
||||||
}
|
|
||||||
.devicon-safari-plain-wordmark:before {
|
|
||||||
content: "\e63b";
|
|
||||||
}
|
|
||||||
.devicon-safari-plain:before {
|
|
||||||
content: "\e63c";
|
|
||||||
}
|
|
||||||
.devicon-jetbrains-plain:before {
|
|
||||||
content: "\e63d";
|
|
||||||
}
|
|
||||||
.devicon-django-line:before {
|
|
||||||
content: "\e63e";
|
|
||||||
}
|
|
||||||
.devicon-django-plain:before {
|
|
||||||
content: "\e63f";
|
|
||||||
}
|
|
||||||
.devicon-gimp-plain:before {
|
|
||||||
content: "\e633";
|
|
||||||
}
|
|
||||||
.devicon-redhat-plain-wordmark:before {
|
|
||||||
content: "\e62a";
|
|
||||||
}
|
|
||||||
.devicon-redhat-plain:before {
|
|
||||||
content: "\e62b";
|
|
||||||
}
|
|
||||||
.devicon-cplusplus-line:before {
|
|
||||||
content: "\e634";
|
|
||||||
}
|
|
||||||
.devicon-cplusplus-plain:before {
|
|
||||||
content: "\e635";
|
|
||||||
}
|
|
||||||
.devicon-csharp-line:before {
|
|
||||||
content: "\e636";
|
|
||||||
}
|
|
||||||
.devicon-csharp-plain:before {
|
|
||||||
content: "\e637";
|
|
||||||
}
|
|
||||||
.devicon-c-line:before {
|
|
||||||
content: "\e638";
|
|
||||||
}
|
|
||||||
.devicon-c-plain:before {
|
|
||||||
content: "\e639";
|
|
||||||
}
|
|
||||||
.devicon-nodewebkit-line-wordmark:before {
|
|
||||||
content: "\e611";
|
|
||||||
}
|
|
||||||
.devicon-nodewebkit-line:before {
|
|
||||||
content: "\e612";
|
|
||||||
}
|
|
||||||
.devicon-nodewebkit-plain-wordmark:before {
|
|
||||||
content: "\e613";
|
|
||||||
}
|
|
||||||
.devicon-nodewebkit-plain:before {
|
|
||||||
content: "\e614";
|
|
||||||
}
|
|
||||||
.devicon-nginx-original:before {
|
|
||||||
content: "\e615";
|
|
||||||
}
|
|
||||||
.devicon-erlang-plain-wordmark:before {
|
|
||||||
content: "\e616";
|
|
||||||
}
|
|
||||||
.devicon-erlang-plain:before {
|
|
||||||
content: "\e617";
|
|
||||||
}
|
|
||||||
.devicon-doctrine-line-wordmark:before {
|
|
||||||
content: "\e618";
|
|
||||||
}
|
|
||||||
.devicon-doctrine-line:before {
|
|
||||||
content: "\e619";
|
|
||||||
}
|
|
||||||
.devicon-doctrine-plain-wordmark:before {
|
|
||||||
content: "\e61a";
|
|
||||||
}
|
|
||||||
.devicon-doctrine-plain:before {
|
|
||||||
content: "\e625";
|
|
||||||
}
|
|
||||||
.devicon-apache-line-wordmark:before {
|
|
||||||
content: "\e626";
|
|
||||||
}
|
|
||||||
.devicon-apache-line:before {
|
|
||||||
content: "\e627";
|
|
||||||
}
|
|
||||||
.devicon-apache-plain-wordmark:before {
|
|
||||||
content: "\e628";
|
|
||||||
}
|
|
||||||
.devicon-apache-plain:before {
|
|
||||||
content: "\e629";
|
|
||||||
}
|
|
||||||
.devicon-go-line:before {
|
|
||||||
content: "\e610";
|
|
||||||
}
|
|
||||||
.devicon-redis-plain-wordmark:before {
|
|
||||||
content: "\e606";
|
|
||||||
}
|
|
||||||
.devicon-redis-plain:before {
|
|
||||||
content: "\e607";
|
|
||||||
}
|
|
||||||
.devicon-meteor-plain-wordmark:before {
|
|
||||||
content: "\e608";
|
|
||||||
}
|
|
||||||
.devicon-meteor-plain:before {
|
|
||||||
content: "\e609";
|
|
||||||
}
|
|
||||||
.devicon-heroku-line-wordmark:before {
|
|
||||||
content: "\e60a";
|
|
||||||
}
|
|
||||||
.devicon-heroku-line:before {
|
|
||||||
content: "\e60b";
|
|
||||||
}
|
|
||||||
.devicon-heroku-plain-wordmark:before {
|
|
||||||
content: "\e60c";
|
|
||||||
}
|
|
||||||
.devicon-heroku-plain:before {
|
|
||||||
content: "\e60f";
|
|
||||||
}
|
|
||||||
.devicon-go-plain:before {
|
|
||||||
content: "\e61b";
|
|
||||||
}
|
|
||||||
.devicon-docker-plain-wordmark:before {
|
|
||||||
content: "\e61e";
|
|
||||||
}
|
|
||||||
.devicon-docker-plain:before {
|
|
||||||
content: "\e61f";
|
|
||||||
}
|
|
||||||
.devicon-symfony-original-wordmark:before {
|
|
||||||
content: "\e602";
|
|
||||||
}
|
|
||||||
.devicon-symfony-original:before {
|
|
||||||
content: "\e605";
|
|
||||||
}
|
|
||||||
.devicon-react-original-wordmark:before {
|
|
||||||
content: "\e600";
|
|
||||||
}
|
|
||||||
.devicon-react-original:before {
|
|
||||||
content: "\e601";
|
|
||||||
}
|
|
||||||
.devicon-amazonwebservices-original:before {
|
|
||||||
content: "\e603";
|
|
||||||
}
|
|
||||||
.devicon-amazonwebservices-plain-wordmark:before {
|
|
||||||
content: "\e604";
|
|
||||||
}
|
|
||||||
.devicon-android-plain-wordmark:before {
|
|
||||||
content: "\e60d";
|
|
||||||
}
|
|
||||||
.devicon-android-plain:before {
|
|
||||||
content: "\e60e";
|
|
||||||
}
|
|
||||||
.devicon-angularjs-plain-wordmark:before {
|
|
||||||
content: "\e61c";
|
|
||||||
}
|
|
||||||
.devicon-angularjs-plain:before {
|
|
||||||
content: "\e61d";
|
|
||||||
}
|
|
||||||
.devicon-appcelerator-original:before {
|
|
||||||
content: "\e620";
|
|
||||||
}
|
|
||||||
.devicon-appcelerator-plain-wordmark:before {
|
|
||||||
content: "\e621";
|
|
||||||
}
|
|
||||||
.devicon-apple-original:before {
|
|
||||||
content: "\e622";
|
|
||||||
}
|
|
||||||
.devicon-atom-original-wordmark:before {
|
|
||||||
content: "\e623";
|
|
||||||
}
|
|
||||||
.devicon-atom-original:before {
|
|
||||||
content: "\e624";
|
|
||||||
}
|
|
||||||
.devicon-backbonejs-plain-wordmark:before {
|
|
||||||
content: "\e62c";
|
|
||||||
}
|
|
||||||
.devicon-backbonejs-plain:before {
|
|
||||||
content: "\e62d";
|
|
||||||
}
|
|
||||||
.devicon-bootstrap-plain-wordmark:before {
|
|
||||||
content: "\e62e";
|
|
||||||
}
|
|
||||||
.devicon-bootstrap-plain:before {
|
|
||||||
content: "\e62f";
|
|
||||||
}
|
|
||||||
.devicon-bower-line-wordmark:before {
|
|
||||||
content: "\e630";
|
|
||||||
}
|
|
||||||
.devicon-bower-line:before {
|
|
||||||
content: "\e631";
|
|
||||||
}
|
|
||||||
.devicon-bower-plain-wordmark:before {
|
|
||||||
content: "\e64e";
|
|
||||||
}
|
|
||||||
.devicon-bower-plain:before {
|
|
||||||
content: "\e64f";
|
|
||||||
}
|
|
||||||
.devicon-chrome-plain-wordmark:before {
|
|
||||||
content: "\e665";
|
|
||||||
}
|
|
||||||
.devicon-chrome-plain:before {
|
|
||||||
content: "\e666";
|
|
||||||
}
|
|
||||||
.devicon-codeigniter-plain-wordmark:before {
|
|
||||||
content: "\e667";
|
|
||||||
}
|
|
||||||
.devicon-codeigniter-plain:before {
|
|
||||||
content: "\e668";
|
|
||||||
}
|
|
||||||
.devicon-coffeescript-original-wordmark:before {
|
|
||||||
content: "\e669";
|
|
||||||
}
|
|
||||||
.devicon-coffeescript-original:before {
|
|
||||||
content: "\e66a";
|
|
||||||
}
|
|
||||||
.devicon-css3-plain-wordmark:before {
|
|
||||||
content: "\e678";
|
|
||||||
}
|
|
||||||
.devicon-css3-plain:before {
|
|
||||||
content: "\e679";
|
|
||||||
}
|
|
||||||
.devicon-debian-plain-wordmark:before {
|
|
||||||
content: "\e67e";
|
|
||||||
}
|
|
||||||
.devicon-debian-plain:before {
|
|
||||||
content: "\e67f";
|
|
||||||
}
|
|
||||||
.devicon-dot-net-plain-wordmark:before {
|
|
||||||
content: "\e6d3";
|
|
||||||
}
|
|
||||||
.devicon-dot-net-plain:before {
|
|
||||||
content: "\e6d4";
|
|
||||||
}
|
|
||||||
.devicon-drupal-plain-wordmark:before {
|
|
||||||
content: "\e6e2";
|
|
||||||
}
|
|
||||||
.devicon-drupal-plain:before {
|
|
||||||
content: "\e6e3";
|
|
||||||
}
|
|
||||||
.devicon-firefox-plain-wordmark:before {
|
|
||||||
content: "\e75d";
|
|
||||||
}
|
|
||||||
.devicon-firefox-plain:before {
|
|
||||||
content: "\e75e";
|
|
||||||
}
|
|
||||||
.devicon-foundation-plain-wordmark:before {
|
|
||||||
content: "\e7a2";
|
|
||||||
}
|
|
||||||
.devicon-foundation-plain:before {
|
|
||||||
content: "\e7a3";
|
|
||||||
}
|
|
||||||
.devicon-git-plain-wordmark:before {
|
|
||||||
content: "\e7a7";
|
|
||||||
}
|
|
||||||
.devicon-git-plain:before {
|
|
||||||
content: "\e7a8";
|
|
||||||
}
|
|
||||||
.devicon-grunt-line-wordmark:before {
|
|
||||||
content: "\e7a9";
|
|
||||||
}
|
|
||||||
.devicon-grunt-line:before {
|
|
||||||
content: "\e7aa";
|
|
||||||
}
|
|
||||||
.devicon-grunt-plain-wordmark:before {
|
|
||||||
content: "\e7ea";
|
|
||||||
}
|
|
||||||
.devicon-grunt-plain:before {
|
|
||||||
content: "\e7eb";
|
|
||||||
}
|
|
||||||
.devicon-gulp-plain:before {
|
|
||||||
content: "\e7ec";
|
|
||||||
}
|
|
||||||
.devicon-html5-plain-wordmark:before {
|
|
||||||
content: "\e7f6";
|
|
||||||
}
|
|
||||||
.devicon-html5-plain:before {
|
|
||||||
content: "\e7f7";
|
|
||||||
}
|
|
||||||
.devicon-ie10-original:before {
|
|
||||||
content: "\e7f8";
|
|
||||||
}
|
|
||||||
.devicon-illustrator-line:before {
|
|
||||||
content: "\e7f9";
|
|
||||||
}
|
|
||||||
.devicon-illustrator-plain:before {
|
|
||||||
content: "\e7fa";
|
|
||||||
}
|
|
||||||
.devicon-inkscape-plain-wordmark:before {
|
|
||||||
content: "\e834";
|
|
||||||
}
|
|
||||||
.devicon-inkscape-plain:before {
|
|
||||||
content: "\e835";
|
|
||||||
}
|
|
||||||
.devicon-java-plain-wordmark:before {
|
|
||||||
content: "\e841";
|
|
||||||
}
|
|
||||||
.devicon-java-plain:before {
|
|
||||||
content: "\e842";
|
|
||||||
}
|
|
||||||
.devicon-javascript-plain:before {
|
|
||||||
content: "\e845";
|
|
||||||
}
|
|
||||||
.devicon-jquery-plain-wordmark:before {
|
|
||||||
content: "\e849";
|
|
||||||
}
|
|
||||||
.devicon-jquery-plain:before {
|
|
||||||
content: "\e84a";
|
|
||||||
}
|
|
||||||
.devicon-krakenjs-plain-wordmark:before {
|
|
||||||
content: "\e84f";
|
|
||||||
}
|
|
||||||
.devicon-krakenjs-plain:before {
|
|
||||||
content: "\e850";
|
|
||||||
}
|
|
||||||
.devicon-laravel-plain-wordmark:before {
|
|
||||||
content: "\e851";
|
|
||||||
}
|
|
||||||
.devicon-laravel-plain:before {
|
|
||||||
content: "\e852";
|
|
||||||
}
|
|
||||||
.devicon-less-plain-wordmark:before {
|
|
||||||
content: "\e853";
|
|
||||||
}
|
|
||||||
.devicon-linux-plain:before {
|
|
||||||
content: "\eb1c";
|
|
||||||
}
|
|
||||||
.devicon-mongodb-plain-wordmark:before {
|
|
||||||
content: "\eb43";
|
|
||||||
}
|
|
||||||
.devicon-mongodb-plain:before {
|
|
||||||
content: "\eb44";
|
|
||||||
}
|
|
||||||
.devicon-moodle-plain-wordmark:before {
|
|
||||||
content: "\eb5a";
|
|
||||||
}
|
|
||||||
.devicon-moodle-plain:before {
|
|
||||||
content: "\eb5b";
|
|
||||||
}
|
|
||||||
.devicon-mysql-plain-wordmark:before {
|
|
||||||
content: "\eb60";
|
|
||||||
}
|
|
||||||
.devicon-mysql-plain:before {
|
|
||||||
content: "\eb61";
|
|
||||||
}
|
|
||||||
.devicon-nodejs-plain-wordmark:before {
|
|
||||||
content: "\eb69";
|
|
||||||
}
|
|
||||||
.devicon-nodejs-plain:before {
|
|
||||||
content: "\eb6a";
|
|
||||||
}
|
|
||||||
.devicon-oracle-original:before {
|
|
||||||
content: "\eb6b";
|
|
||||||
}
|
|
||||||
.devicon-photoshop-line:before {
|
|
||||||
content: "\eb6c";
|
|
||||||
}
|
|
||||||
.devicon-photoshop-plain:before {
|
|
||||||
content: "\eb6d";
|
|
||||||
}
|
|
||||||
.devicon-php-plain:before {
|
|
||||||
content: "\eb71";
|
|
||||||
}
|
|
||||||
.devicon-postgresql-plain-wordmark:before {
|
|
||||||
content: "\eb7c";
|
|
||||||
}
|
|
||||||
.devicon-postgresql-plain:before {
|
|
||||||
content: "\eb7d";
|
|
||||||
}
|
|
||||||
.devicon-python-plain-wordmark:before {
|
|
||||||
content: "\eb88";
|
|
||||||
}
|
|
||||||
.devicon-python-plain:before {
|
|
||||||
content: "\eb89";
|
|
||||||
}
|
|
||||||
.devicon-rails-plain-wordmark:before {
|
|
||||||
content: "\eba2";
|
|
||||||
}
|
|
||||||
.devicon-rails-plain:before {
|
|
||||||
content: "\eba3";
|
|
||||||
}
|
|
||||||
.devicon-ruby-plain-wordmark:before {
|
|
||||||
content: "\ebc9";
|
|
||||||
}
|
|
||||||
.devicon-ruby-plain:before {
|
|
||||||
content: "\ebca";
|
|
||||||
}
|
|
||||||
.devicon-sass-original:before {
|
|
||||||
content: "\ebcb";
|
|
||||||
}
|
|
||||||
.devicon-travis-plain-wordmark:before {
|
|
||||||
content: "\ebcc";
|
|
||||||
}
|
|
||||||
.devicon-travis-plain:before {
|
|
||||||
content: "\ebcd";
|
|
||||||
}
|
|
||||||
.devicon-trello-plain-wordmark:before {
|
|
||||||
content: "\ebce";
|
|
||||||
}
|
|
||||||
.devicon-trello-plain:before {
|
|
||||||
content: "\ebcf";
|
|
||||||
}
|
|
||||||
.devicon-ubuntu-plain-wordmark:before {
|
|
||||||
content: "\ebd0";
|
|
||||||
}
|
|
||||||
.devicon-ubuntu-plain:before {
|
|
||||||
content: "\ebd1";
|
|
||||||
}
|
|
||||||
.devicon-vim-plain:before {
|
|
||||||
content: "\ebf3";
|
|
||||||
}
|
|
||||||
.devicon-windows8-original-wordmark:before {
|
|
||||||
content: "\ebf4";
|
|
||||||
}
|
|
||||||
.devicon-windows8-original:before {
|
|
||||||
content: "\ebf5";
|
|
||||||
}
|
|
||||||
.devicon-wordpress-plain-wordmark:before {
|
|
||||||
content: "\ebfd";
|
|
||||||
}
|
|
||||||
.devicon-wordpress-plain:before {
|
|
||||||
content: "\ebfe";
|
|
||||||
}
|
|
||||||
.devicon-yii-plain-wordmark:before {
|
|
||||||
content: "\ec01";
|
|
||||||
}
|
|
||||||
.devicon-yii-plain:before {
|
|
||||||
content: "\ec02";
|
|
||||||
}
|
|
||||||
.devicon-zend-plain-wordmark:before {
|
|
||||||
content: "\ec03";
|
|
||||||
}
|
|
||||||
.devicon-zend-plain:before {
|
|
||||||
content: "\ec04";
|
|
||||||
}
|
|
Binary file not shown.
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 825 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
22
devicon.json
22
devicon.json
@@ -1,15 +1,12 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"name": "haskell",
|
"name": "amazonwebservices",
|
||||||
"color": "#5d5086",
|
"tags": ["cloud", "hosting", "server"],
|
||||||
"tags": ["language", "functional"],
|
|
||||||
"versions": {
|
"versions": {
|
||||||
"svg": ["original", "original-wordmark", "plain", "plain-wordmark"],
|
"svg": ["original", "original-wordmark", "plain-wordmark"],
|
||||||
"font": ["plain", "plain-wordmark"]
|
"font": ["original", "plain-wordmark"]
|
||||||
},
|
}
|
||||||
"aliases": []
|
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "android",
|
"name": "android",
|
||||||
"tags": ["os", "mobile"],
|
"tags": ["os", "mobile"],
|
||||||
@@ -144,8 +141,7 @@
|
|||||||
"versions": {
|
"versions": {
|
||||||
"svg": ["original", "line", "plain"],
|
"svg": ["original", "line", "plain"],
|
||||||
"font": []
|
"font": []
|
||||||
},
|
}
|
||||||
"aliases": []
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "clojurescript",
|
"name": "clojurescript",
|
||||||
@@ -153,8 +149,7 @@
|
|||||||
"versions": {
|
"versions": {
|
||||||
"svg": ["original", "plain"],
|
"svg": ["original", "plain"],
|
||||||
"font": []
|
"font": []
|
||||||
},
|
}
|
||||||
"aliases": []
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "codeigniter",
|
"name": "codeigniter",
|
||||||
@@ -626,8 +621,7 @@
|
|||||||
"versions": {
|
"versions": {
|
||||||
"svg": ["plain"],
|
"svg": ["plain"],
|
||||||
"font": []
|
"font": []
|
||||||
},
|
}
|
||||||
"aliases": []
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mongodb",
|
"name": "mongodb",
|
||||||
|
2
devicon.min.css
vendored
2
devicon.min.css
vendored
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg enable-background="new 0 0 128 128" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#333333;fill-opacity:0.937;}
|
|
||||||
.st1{fill:#463B63;}
|
|
||||||
.st2{fill:#5E5187;}
|
|
||||||
.st3{fill:#904F8C;}
|
|
||||||
</style>
|
|
||||||
<path class="st0" d="m47.1 52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1v-18.7h5.1v6.9h6.3v-6.9h5.1zm6.7 19c-0.7 0-1.3-0.1-1.9-0.3s-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4-0.2-0.6-0.3-1.2-0.3-1.9s0.1-1.3 0.4-1.9 0.7-1.1 1.2-1.5 1.2-0.7 1.9-1c0.7-0.2 1.5-0.3 2.4-0.3 1.1 0 2.1 0.2 2.8 0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4s-1-0.5-1.8-0.5-1.5 0.1-2.2 0.4c-0.7 0.2-1.4 0.6-2.1 1.1l-1.4-3.1c1.8-1.2 3.9-1.8 6.2-1.8 2.2 0 3.9 0.5 5.1 1.5s1.8 2.5 1.8 4.4v2.7c0 0.5 0.1 0.8 0.3 1s0.5 0.3 0.9 0.3v4.2c-0.5 0.1-0.9 0.1-1.3 0.2s-0.8 0.1-1.1 0.1c-0.9 0-1.6-0.2-2.1-0.5s-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6 0.8-1.3 1.4-2.1 1.8-0.7 0.4-1.6 0.6-2.5 0.6zm1.5-3.6c0.3 0 0.6 0 0.9-0.1s0.6-0.2 0.8-0.4c0.2-0.1 0.4-0.3 0.5-0.4 0.1-0.2 0.2-0.4 0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3s-0.7-0.1-0.9-0.1c-0.6 0-1.1 0.1-1.5 0.4s-0.6 0.7-0.6 1.1 0.1 0.7 0.4 0.9c0.3 0.3 0.7 0.4 1.2 0.4zm16.5 3.6c-0.6 0-1.2 0-1.9-0.1s-1.3-0.2-2-0.3c-0.6-0.1-1.2-0.3-1.8-0.5s-1.1-0.4-1.6-0.7l1.9-3.4c1 0.5 1.9 0.9 2.8 1.2s1.7 0.4 2.5 0.4c0.9 0 1.3-0.2 1.3-0.7 0-0.2-0.2-0.4-0.5-0.6-0.4-0.2-1-0.4-2-0.6-1-0.3-1.8-0.5-2.5-0.8s-1.2-0.6-1.6-0.9-0.7-0.7-0.9-1.1-0.3-0.9-0.3-1.4c0-0.7 0.1-1.4 0.4-1.9 0.3-0.6 0.7-1.1 1.2-1.6 0.5-0.4 1.1-0.8 1.9-1 0.7-0.2 1.5-0.4 2.4-0.4s1.9 0.1 3 0.4 2.2 0.6 3.3 1.2l-1.9 3.2c-1-0.5-1.8-0.8-2.4-1s-1.3-0.3-1.9-0.3c-0.4 0-0.7 0.1-0.9 0.2s-0.3 0.3-0.3 0.5c0 0.1 0 0.3 0.1 0.4s0.2 0.2 0.4 0.3 0.4 0.2 0.7 0.3 0.7 0.2 1.2 0.3c1.1 0.3 1.9 0.5 2.7 0.8 0.7 0.3 1.3 0.6 1.7 0.9s0.7 0.7 0.9 1.2c0.2 0.4 0.3 0.9 0.3 1.5 0 1.4-0.5 2.5-1.6 3.4-1.3 0.7-2.7 1.1-4.6 1.1zm16.9-0.3-3.1-5.1-1 1.1v3.9h-5v-19.1h5v10.5l3.7-5.1h5.3l-4.8 6.1 5.2 7.8h-5.3v-0.1z"/>
|
|
||||||
<path class="st0" d="m101 71.5c-1.2 0-2.3-0.2-3.2-0.6s-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2s-0.5-1.7-0.5-2.7 0.2-1.9 0.5-2.8 0.8-1.7 1.4-2.3c0.6-0.7 1.4-1.2 2.4-1.6 0.9-0.4 2-0.6 3.3-0.6 1.2 0 2.3 0.2 3.3 0.6 0.9 0.4 1.7 0.9 2.4 1.6 0.6 0.6 1.1 1.4 1.4 2.3s0.5 1.8 0.5 2.7c0 0.3 0 0.5-0.1 0.8 0 0.3 0 0.5-0.1 0.7h-9.7c0.1 0.7 0.3 1.3 0.8 1.6s1 0.5 1.6 0.5c0.5 0 1.1-0.1 1.5-0.4 0.5-0.2 0.8-0.6 1-1l4.2 1.2c-0.6 1.1-1.4 2-2.6 2.7s-2.6 1.1-4.3 1.1zm2.2-8.7c-0.1-0.7-0.3-1.2-0.7-1.6s-0.9-0.6-1.6-0.6c-0.6 0-1.2 0.2-1.6 0.6s-0.6 0.9-0.7 1.6h4.6zm6.9-10.8h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5zm9.6 0h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5z"/>
|
|
||||||
<path class="st1" d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
|
|
||||||
<path class="st2" d="m6.2 71.3 6.2-9.3-6.2-9.3h4.7l12.5 18.7h-4.7l-3.9-5.8-3.9 5.8h-4.7z"/>
|
|
||||||
<path class="st3" d="m21.3 65.8-2.1-3.1h7.3v3.1h-5.2zm-3.1-4.7-2.1-3.1h10.4v3.1h-8.3z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg enable-background="new 0 0 128 128" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path class="st0" d="m47.1 52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1v-18.7h5.1v6.9h6.3v-6.9h5.1zm6.7 19c-0.7 0-1.3-0.1-1.9-0.3s-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4-0.2-0.6-0.3-1.2-0.3-1.9s0.1-1.3 0.4-1.9 0.7-1.1 1.2-1.5 1.2-0.7 1.9-1c0.7-0.2 1.5-0.3 2.4-0.3 1.1 0 2.1 0.2 2.8 0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4s-1-0.5-1.8-0.5-1.5 0.1-2.2 0.4c-0.7 0.2-1.4 0.6-2.1 1.1l-1.4-3.1c1.8-1.2 3.9-1.8 6.2-1.8 2.2 0 3.9 0.5 5.1 1.5s1.8 2.5 1.8 4.4v2.7c0 0.5 0.1 0.8 0.3 1s0.5 0.3 0.9 0.3v4.2c-0.5 0.1-0.9 0.1-1.3 0.2s-0.8 0.1-1.1 0.1c-0.9 0-1.6-0.2-2.1-0.5s-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6 0.8-1.3 1.4-2.1 1.8-0.7 0.4-1.6 0.6-2.5 0.6zm1.5-3.6c0.3 0 0.6 0 0.9-0.1s0.6-0.2 0.8-0.4c0.2-0.1 0.4-0.3 0.5-0.4 0.1-0.2 0.2-0.4 0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3s-0.7-0.1-0.9-0.1c-0.6 0-1.1 0.1-1.5 0.4s-0.6 0.7-0.6 1.1 0.1 0.7 0.4 0.9c0.3 0.3 0.7 0.4 1.2 0.4zm16.5 3.6c-0.6 0-1.2 0-1.9-0.1s-1.3-0.2-2-0.3c-0.6-0.1-1.2-0.3-1.8-0.5s-1.1-0.4-1.6-0.7l1.9-3.4c1 0.5 1.9 0.9 2.8 1.2s1.7 0.4 2.5 0.4c0.9 0 1.3-0.2 1.3-0.7 0-0.2-0.2-0.4-0.5-0.6-0.4-0.2-1-0.4-2-0.6-1-0.3-1.8-0.5-2.5-0.8s-1.2-0.6-1.6-0.9-0.7-0.7-0.9-1.1-0.3-0.9-0.3-1.4c0-0.7 0.1-1.4 0.4-1.9 0.3-0.6 0.7-1.1 1.2-1.6 0.5-0.4 1.1-0.8 1.9-1 0.7-0.2 1.5-0.4 2.4-0.4s1.9 0.1 3 0.4 2.2 0.6 3.3 1.2l-1.9 3.2c-1-0.5-1.8-0.8-2.4-1s-1.3-0.3-1.9-0.3c-0.4 0-0.7 0.1-0.9 0.2s-0.3 0.3-0.3 0.5c0 0.1 0 0.3 0.1 0.4s0.2 0.2 0.4 0.3 0.4 0.2 0.7 0.3 0.7 0.2 1.2 0.3c1.1 0.3 1.9 0.5 2.7 0.8 0.7 0.3 1.3 0.6 1.7 0.9s0.7 0.7 0.9 1.2c0.2 0.4 0.3 0.9 0.3 1.5 0 1.4-0.5 2.5-1.6 3.4-1.3 0.7-2.7 1.1-4.6 1.1zm16.9-0.3-3.1-5.1-1 1.1v3.9h-5v-19.1h5v10.5l3.7-5.1h5.3l-4.8 6.1 5.2 7.8h-5.3v-0.1z"/>
|
|
||||||
<path class="st0" d="m101 71.5c-1.2 0-2.3-0.2-3.2-0.6s-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2s-0.5-1.7-0.5-2.7 0.2-1.9 0.5-2.8 0.8-1.7 1.4-2.3c0.6-0.7 1.4-1.2 2.4-1.6 0.9-0.4 2-0.6 3.3-0.6 1.2 0 2.3 0.2 3.3 0.6 0.9 0.4 1.7 0.9 2.4 1.6 0.6 0.6 1.1 1.4 1.4 2.3s0.5 1.8 0.5 2.7c0 0.3 0 0.5-0.1 0.8 0 0.3 0 0.5-0.1 0.7h-9.7c0.1 0.7 0.3 1.3 0.8 1.6s1 0.5 1.6 0.5c0.5 0 1.1-0.1 1.5-0.4 0.5-0.2 0.8-0.6 1-1l4.2 1.2c-0.6 1.1-1.4 2-2.6 2.7s-2.6 1.1-4.3 1.1zm2.2-8.7c-0.1-0.7-0.3-1.2-0.7-1.6s-0.9-0.6-1.6-0.6c-0.6 0-1.2 0.2-1.6 0.6s-0.6 0.9-0.7 1.6h4.6zm6.9-10.8h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5zm9.6 0h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5z"/>
|
|
||||||
<path d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
|
|
||||||
<path d="m6.2 71.3 6.2-9.3-6.2-9.3h4.7l12.5 18.7h-4.7l-3.9-5.8-3.9 5.8h-4.7z"/>
|
|
||||||
<path d="m21.3 65.8-2.1-3.1h7.3v3.1h-5.2zm-3.1-4.7-2.1-3.1h10.4v3.1h-8.3z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.8 KiB |
1914
package-lock.json
generated
1914
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user