Compare commits
8 Commits
dependabot
...
master
Author | SHA1 | Date | |
---|---|---|---|
e21fc48161 | |||
a5a9007c4c | |||
39f3d0e15e | |||
13e97fc5db | |||
b000d13c93 | |||
63829ebbc1 | |||
8d5d2bf5a4 | |||
8f7349dcbf |
29
Dockerfile
Normal file
29
Dockerfile
Normal file
@ -0,0 +1,29 @@
|
||||
# 使用官方 Node.js 运行时作为父镜像
|
||||
FROM node:16-alpine AS build-stage
|
||||
|
||||
# 设置工作目录
|
||||
WORKDIR /app
|
||||
|
||||
# 将应用的源代码复制到容器中
|
||||
COPY . .
|
||||
|
||||
# 安装 Yarn
|
||||
RUN npm install -g yarn --force && yarn install --force && yarn build
|
||||
|
||||
# 使用Nginx作为基础镜像
|
||||
FROM nginx:alpine as builder
|
||||
|
||||
# 删除默认的 Nginx 网站
|
||||
RUN rm -rf /usr/share/nginx/html/*
|
||||
|
||||
# 将本地Nginx配置文件复制到容器中
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
|
||||
# 将Vue.js应用的构建产物复制到Nginx的默认目录
|
||||
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
||||
|
||||
# 暴露Nginx端口
|
||||
EXPOSE 80
|
||||
|
||||
# 启动Nginx
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
@ -2,7 +2,7 @@
|
||||
|
||||
## Project setup
|
||||
```
|
||||
yarn install
|
||||
yarn install --registry=https://registry.npmmirror.com
|
||||
```
|
||||
|
||||
### Compiles and hot-reloads for development
|
||||
|
15
nginx.conf
Normal file
15
nginx.conf
Normal file
@ -0,0 +1,15 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
}
|
23017
package-lock.json
generated
23017
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -9,6 +9,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"core-js": "^3.6.5",
|
||||
"lineicons": "^1.0.3",
|
||||
"vue": "^2.6.11",
|
||||
"vue-router": "^3.4.9"
|
||||
},
|
||||
@ -23,7 +24,7 @@
|
||||
"file-loader": "^6.2.0",
|
||||
"style-loader": "^2.0.0",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"webpack": "^5.4.0"
|
||||
"webpack": "5.76.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
|
@ -2,49 +2,49 @@
|
||||
<html lang="zh">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="author" content="viggo" />
|
||||
<title>WebStack.cc - 设计师网址导航</title>
|
||||
<meta name="keywords"
|
||||
content="UI设计,UI设计素材,设计导航,网址导航,设计资源,创意导航,创意网站导航,设计师网址大全,设计素材大全,设计师导航,UI设计资源,优秀UI设计欣赏,设计师导航,设计师网址大全,设计师网址导航,产品经理网址导航,交互设计师网址导航,www.webstack.cc">
|
||||
<meta name="description" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<link rel="shortcut icon" href="favicon.png">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<meta name="author" content="viggo"/>
|
||||
<title>WebStack.cc - 设计师网址导航</title>
|
||||
<meta name="keywords"
|
||||
content="UI设计,UI设计素材,设计导航,网址导航,设计资源,创意导航,创意网站导航,设计师网址大全,设计素材大全,设计师导航,UI设计资源,优秀UI设计欣赏,设计师导航,设计师网址大全,设计师网址导航,产品经理网址导航,交互设计师网址导航,www.webstack.cc">
|
||||
<meta name="description" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<link rel="shortcut icon" href="favicon.png">
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<!-- / FB Open Graph -->
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content="http://www.webstack.cc/">
|
||||
<meta property="og:title" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<meta property="og:description"
|
||||
content="UI设计,UI设计素材,设计导航,网址导航,设计资源,创意导航,创意网站导航,设计师网址大全,设计素材大全,设计师导航,UI设计资源,优秀UI设计欣赏,设计师导航,设计师网址大全,设计师网址导航,产品经理网址导航,交互设计师网址导航,www.webstack.cc">
|
||||
<meta property="og:image" content="http://webstack.cc/assets/images/webstack_banner_cn.png">
|
||||
<meta property="og:site_name" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<!-- / Twitter Cards -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<meta name="twitter:description"
|
||||
content="UI设计,UI设计素材,设计导航,网址导航,设计资源,创意导航,创意网站导航,设计师网址大全,设计素材大全,设计师导航,UI设计资源,优秀UI设计欣赏,设计师导航,设计师网址大全,设计师网址导航,产品经理网址导航,交互设计师网址导航,www.webstack.cc">
|
||||
<meta name="twitter:image" content="http://www.webstack.cc/assets/images/webstack_banner_cn.png">
|
||||
<!-- / FB Open Graph -->
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content="http://www.webstack.cc/">
|
||||
<meta property="og:title" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<meta property="og:description"
|
||||
content="UI设计,UI设计素材,设计导航,网址导航,设计资源,创意导航,创意网站导航,设计师网址大全,设计素材大全,设计师导航,UI设计资源,优秀UI设计欣赏,设计师导航,设计师网址大全,设计师网址导航,产品经理网址导航,交互设计师网址导航,www.webstack.cc">
|
||||
<meta property="og:image" content="http://webstack.cc/assets/images/webstack_banner_cn.png">
|
||||
<meta property="og:site_name" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<!-- / Twitter Cards -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="WebStack - 收集国内外优秀设计网站、UI设计资源网站、灵感创意网站、素材资源网站,定时更新分享优质产品设计书签。www.webstack.cc">
|
||||
<meta name="twitter:description"
|
||||
content="UI设计,UI设计素材,设计导航,网址导航,设计资源,创意导航,创意网站导航,设计师网址大全,设计素材大全,设计师导航,UI设计资源,优秀UI设计欣赏,设计师导航,设计师网址大全,设计师网址导航,产品经理网址导航,交互设计师网址导航,www.webstack.cc">
|
||||
<meta name="twitter:image" content="http://www.webstack.cc/assets/images/webstack_banner_cn.png">
|
||||
</head>
|
||||
|
||||
<body class="page-body">
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script src="./assets/js/jquery-1.11.1.min.js"></script>
|
||||
<script src="./assets/js/bootstrap.min.js"></script>
|
||||
<!--<script src="./assets/js/TweenMax.min.js"></script>
|
||||
<script src="./assets/js/resizeable.js"></script>
|
||||
<script src="./assets/js/joinable.js"></script>
|
||||
<script src="./assets/js/xenon-api.js"></script>
|
||||
<script src="./assets/js/xenon-toggles.js"></script>
|
||||
<script src="./assets/js/xenon-custom.js"></script>
|
||||
<script src="./assets/js/app.js"></script> -->
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script src="./assets/js/jquery-1.11.1.min.js"></script>
|
||||
<script src="./assets/js/bootstrap.min.js"></script>
|
||||
<!--<script src="./assets/js/TweenMax.min.js"></script>
|
||||
<script src="./assets/js/resizeable.js"></script>
|
||||
<script src="./assets/js/joinable.js"></script>
|
||||
<script src="./assets/js/xenon-api.js"></script>
|
||||
<script src="./assets/js/xenon-toggles.js"></script>
|
||||
<script src="./assets/js/xenon-custom.js"></script>
|
||||
<script src="./assets/js/app.js"></script> -->
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,85 +0,0 @@
|
||||
/*
|
||||
Animation example, for spinners
|
||||
*/
|
||||
.animate-spin {
|
||||
-moz-animation: spin 2s infinite linear;
|
||||
-o-animation: spin 2s infinite linear;
|
||||
-webkit-animation: spin 2s infinite linear;
|
||||
animation: spin 2s infinite linear;
|
||||
display: inline-block;
|
||||
}
|
||||
@-moz-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-o-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-ms-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
2469
src/assets/css/fonts/linecons/css/icons.css
Normal file
2469
src/assets/css/fonts/linecons/css/icons.css
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,49 +0,0 @@
|
||||
|
||||
.linecons-music:before { content: '\e800'; } /* '' */
|
||||
.linecons-search:before { content: '\e801'; } /* '' */
|
||||
.linecons-mail:before { content: '\e802'; } /* '' */
|
||||
.linecons-heart:before { content: '\e803'; } /* '' */
|
||||
.linecons-star:before { content: '\e804'; } /* '' */
|
||||
.linecons-user:before { content: '\e805'; } /* '' */
|
||||
.linecons-videocam:before { content: '\e806'; } /* '' */
|
||||
.linecons-camera:before { content: '\e807'; } /* '' */
|
||||
.linecons-photo:before { content: '\e808'; } /* '' */
|
||||
.linecons-attach:before { content: '\e809'; } /* '' */
|
||||
.linecons-lock:before { content: '\e80a'; } /* '' */
|
||||
.linecons-eye:before { content: '\e80b'; } /* '' */
|
||||
.linecons-tag:before { content: '\e80c'; } /* '' */
|
||||
.linecons-thumbs-up:before { content: '\e80d'; } /* '' */
|
||||
.linecons-pencil:before { content: '\e80e'; } /* '' */
|
||||
.linecons-comment:before { content: '\e80f'; } /* '' */
|
||||
.linecons-location:before { content: '\e810'; } /* '' */
|
||||
.linecons-cup:before { content: '\e811'; } /* '' */
|
||||
.linecons-trash:before { content: '\e812'; } /* '' */
|
||||
.linecons-doc:before { content: '\e813'; } /* '' */
|
||||
.linecons-note:before { content: '\e814'; } /* '' */
|
||||
.linecons-cog:before { content: '\e815'; } /* '' */
|
||||
.linecons-params:before { content: '\e816'; } /* '' */
|
||||
.linecons-calendar:before { content: '\e817'; } /* '' */
|
||||
.linecons-sound:before { content: '\e818'; } /* '' */
|
||||
.linecons-clock:before { content: '\e819'; } /* '' */
|
||||
.linecons-lightbulb:before { content: '\e81a'; } /* '' */
|
||||
.linecons-tv:before { content: '\e81b'; } /* '' */
|
||||
.linecons-desktop:before { content: '\e81c'; } /* '' */
|
||||
.linecons-mobile:before { content: '\e81d'; } /* '' */
|
||||
.linecons-cd:before { content: '\e81e'; } /* '' */
|
||||
.linecons-inbox:before { content: '\e81f'; } /* '' */
|
||||
.linecons-globe:before { content: '\e820'; } /* '' */
|
||||
.linecons-cloud:before { content: '\e821'; } /* '' */
|
||||
.linecons-paper-plane:before { content: '\e822'; } /* '' */
|
||||
.linecons-fire:before { content: '\e823'; } /* '' */
|
||||
.linecons-graduation-cap:before { content: '\e824'; } /* '' */
|
||||
.linecons-megaphone:before { content: '\e825'; } /* '' */
|
||||
.linecons-database:before { content: '\e826'; } /* '' */
|
||||
.linecons-key:before { content: '\e827'; } /* '' */
|
||||
.linecons-beaker:before { content: '\e828'; } /* '' */
|
||||
.linecons-truck:before { content: '\e829'; } /* '' */
|
||||
.linecons-money:before { content: '\e82a'; } /* '' */
|
||||
.linecons-food:before { content: '\e82b'; } /* '' */
|
||||
.linecons-shop:before { content: '\e82c'; } /* '' */
|
||||
.linecons-diamond:before { content: '\e82d'; } /* '' */
|
||||
.linecons-t-shirt:before { content: '\e82e'; } /* '' */
|
||||
.linecons-wallet:before { content: '\e82f'; } /* '' */
|
File diff suppressed because one or more lines are too long
@ -1,49 +0,0 @@
|
||||
|
||||
.linecons-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-params { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-t-shirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-wallet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
@ -1,60 +0,0 @@
|
||||
[class^="linecons-"], [class*=" linecons-"] {
|
||||
font-family: 'linecons';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
|
||||
/* fix buttons height */
|
||||
line-height: 1em;
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
}
|
||||
|
||||
.linecons-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-params { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-t-shirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.linecons-wallet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
@ -1,100 +0,0 @@
|
||||
@font-face {
|
||||
font-family: 'linecons';
|
||||
src: url('../font/linecons.eot?24293614');
|
||||
src: url('../font/linecons.eot?24293614#iefix') format('embedded-opentype'),
|
||||
url('../font/linecons.woff?24293614') format('woff'),
|
||||
url('../font/linecons.ttf?24293614') format('truetype'),
|
||||
url('../font/linecons.svg?24293614#linecons') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
|
||||
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
|
||||
/*
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: 'linecons';
|
||||
src: url('../font/linecons.svg?24293614#linecons') format('svg');
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
[class^="linecons-"]:before, [class*=" linecons-"]:before {
|
||||
font-family: "linecons";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
speak: none;
|
||||
|
||||
display: inline-block;
|
||||
text-decoration: inherit;
|
||||
width: 1em;
|
||||
margin-right: .2em;
|
||||
text-align: center;
|
||||
/* opacity: .8; */
|
||||
|
||||
/* For safety - reset parent styles, that can break glyph codes*/
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
|
||||
/* fix buttons height, for twitter bootstrap */
|
||||
line-height: 1em;
|
||||
|
||||
/* Animation center compensation - margins should be symmetric */
|
||||
/* remove if not needed */
|
||||
margin-left: .2em;
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
|
||||
/* Uncomment for 3D effect */
|
||||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
||||
}
|
||||
|
||||
.linecons-music:before { content: '\e800'; } /* '' */
|
||||
.linecons-search:before { content: '\e801'; } /* '' */
|
||||
.linecons-mail:before { content: '\e802'; } /* '' */
|
||||
.linecons-heart:before { content: '\e803'; } /* '' */
|
||||
.linecons-star:before { content: '\e804'; } /* '' */
|
||||
.linecons-user:before { content: '\e805'; } /* '' */
|
||||
.linecons-videocam:before { content: '\e806'; } /* '' */
|
||||
.linecons-camera:before { content: '\e807'; } /* '' */
|
||||
.linecons-photo:before { content: '\e808'; } /* '' */
|
||||
.linecons-attach:before { content: '\e809'; } /* '' */
|
||||
.linecons-lock:before { content: '\e80a'; } /* '' */
|
||||
.linecons-eye:before { content: '\e80b'; } /* '' */
|
||||
.linecons-tag:before { content: '\e80c'; } /* '' */
|
||||
.linecons-thumbs-up:before { content: '\e80d'; } /* '' */
|
||||
.linecons-pencil:before { content: '\e80e'; } /* '' */
|
||||
.linecons-comment:before { content: '\e80f'; } /* '' */
|
||||
.linecons-location:before { content: '\e810'; } /* '' */
|
||||
.linecons-cup:before { content: '\e811'; } /* '' */
|
||||
.linecons-trash:before { content: '\e812'; } /* '' */
|
||||
.linecons-doc:before { content: '\e813'; } /* '' */
|
||||
.linecons-note:before { content: '\e814'; } /* '' */
|
||||
.linecons-cog:before { content: '\e815'; } /* '' */
|
||||
.linecons-params:before { content: '\e816'; } /* '' */
|
||||
.linecons-calendar:before { content: '\e817'; } /* '' */
|
||||
.linecons-sound:before { content: '\e818'; } /* '' */
|
||||
.linecons-clock:before { content: '\e819'; } /* '' */
|
||||
.linecons-lightbulb:before { content: '\e81a'; } /* '' */
|
||||
.linecons-tv:before { content: '\e81b'; } /* '' */
|
||||
.linecons-desktop:before { content: '\e81c'; } /* '' */
|
||||
.linecons-mobile:before { content: '\e81d'; } /* '' */
|
||||
.linecons-cd:before { content: '\e81e'; } /* '' */
|
||||
.linecons-inbox:before { content: '\e81f'; } /* '' */
|
||||
.linecons-globe:before { content: '\e820'; } /* '' */
|
||||
.linecons-cloud:before { content: '\e821'; } /* '' */
|
||||
.linecons-paper-plane:before { content: '\e822'; } /* '' */
|
||||
.linecons-fire:before { content: '\e823'; } /* '' */
|
||||
.linecons-graduation-cap:before { content: '\e824'; } /* '' */
|
||||
.linecons-megaphone:before { content: '\e825'; } /* '' */
|
||||
.linecons-database:before { content: '\e826'; } /* '' */
|
||||
.linecons-key:before { content: '\e827'; } /* '' */
|
||||
.linecons-beaker:before { content: '\e828'; } /* '' */
|
||||
.linecons-truck:before { content: '\e829'; } /* '' */
|
||||
.linecons-money:before { content: '\e82a'; } /* '' */
|
||||
.linecons-food:before { content: '\e82b'; } /* '' */
|
||||
.linecons-shop:before { content: '\e82c'; } /* '' */
|
||||
.linecons-diamond:before { content: '\e82d'; } /* '' */
|
||||
.linecons-t-shirt:before { content: '\e82e'; } /* '' */
|
||||
.linecons-wallet:before { content: '\e82f'; } /* '' */
|
3662
src/assets/css/fonts/linecons/demo.html
Normal file
3662
src/assets/css/fonts/linecons/demo.html
Normal file
File diff suppressed because it is too large
Load Diff
2570
src/assets/css/fonts/linecons/demo/css/style.css
Normal file
2570
src/assets/css/fonts/linecons/demo/css/style.css
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,59 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Copyright (C) 2014 by original authors @ fontello.com</metadata>
|
||||
<defs>
|
||||
<font id="linecons" horiz-adv-x="1000" >
|
||||
<font-face font-family="linecons" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
||||
<missing-glyph horiz-adv-x="1000" />
|
||||
<glyph glyph-name="music" unicode="" d="m10-45q-22 57 5 118 37 76 131 107 39 14 78 14 69 0 119-37l0 537q0 23 15 40t36 22l531 94 12 0q24 0 41-16 22-17 22-47l0-656q0-35-16-66-37-76-131-108-39-13-78-13-60 0-107 28t-65 77q-21 57 6 117 37 77 131 108 39 14 78 14 68 0 119-38l0 379-519-91-12 0 0-500q0-36-16-67-37-76-131-107-39-14-78-14-60 0-107 28t-64 77z m57 22q15-41 66-58t107 3 85 62 13 83-66 57-106-2-85-62-14-83z m337 623l531 94 0 93-531-93 0-94z m256-529q15-41 66-58t107 3 85 62 13 83-66 57-107-3-84-61-14-83z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="search" unicode="" d="m0-41q0 47 33 80l260 260q-43 82-43 176 0 154 109 265t266 110 266-110 109-266-109-265-266-109q-94 0-176 43l-260-260q-33-33-80-33-45 0-77 32t-32 77z m55 1q0-22 16-39t39-16 40 17l252 252q-45 33-78 78l-252-252q-17-17-17-40z m258 515q0-129 91-221t221-91 221 91 91 221-91 221-221 91-221-91-91-221z m93 0q0 90 65 154t154 65q16 0 16-16t-16-16q-78 0-133-54t-54-133q0-16-16-16t-16 16z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="mail" unicode="" d="m0 163l0 406q0 51 36 88t89 37l750 0q53 0 89-37t36-88l0-406q0-53-36-89t-89-36l-750 0q-53 0-89 36t-36 89z m63 0q0-26 18-44t44-19l750 0q25 0 44 19t18 44l-244 183-136-101q-26-20-57-20t-57 20l-136 101z m0 39l218 164-218 164 0-328z m0 367l244-184 27-19 129-98q16-12 37-12t37 12l400 301q0 25-18 44t-44 18l-750 0q-25 0-44-18t-18-44z m656-203l218-164 0 328z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="heart" unicode="" d="m0 476q0 122 88 210 84 84 204 86t208-78q88 80 208 78t204-86q88-88 88-210t-88-210q-4-4-346-342-27-27-66-27t-66 27q-2 0-346 342-88 88-88 210z m63 0q0-97 70-165l346-342q21-23 43 0l345 342q70 68 70 165t-70 165q-66 66-160 68t-164-60l-43-39-43 39q-70 62-164 60t-160-68q-70-68-70-165z m93 7q0 55 39 94t94 39q16 0 16-16t-16-16q-41 0-71-29t-30-72q0-16-16-16t-16 16z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="star" unicode="" d="m4 457q14 41 57 47l262 39 113 235q19 41 64 41t65-41l113-235 262-39q43-6 56-47t-15-70l-192-191 43-264q8-43-29-68-18-14-41-14-18 0-35 8l-227 123-226-123q-18-8-35-8-24 0-41 14-38 25-30 68l43 264-189 191q-32 29-18 70z m69-21l191-191q25-26 19-61l-44-264 226 123q16 8 35 8t35-8l227-123-45 264q-6 35 20 61l191 191-260 37q-39 6-54 41l-114 234-113-234q-16-35-55-39z" horiz-adv-x="1001" />
|
||||
<glyph glyph-name="user" unicode="" d="m4-105q-14 43 25 70 119 78 291 116-84 105-119 255-10 55-11 122t23 149 66 138q84 105 223 105t222-105q43-57 67-138t22-149-11-122q-35-150-119-256 172-37 291-115 39-27 26-71t-61-44l-875 0q-21 0-38 13t-22 32z m60 17l875 0q-109 73-267 108l-79 16q-45-30-91-30t-92 30l-78-16q-160-35-268-108z m193 602q-13-103 16-208t96-186l10-14q56-65 123-65t123 65l9 14q67 82 96 186t16 208q-14 113-76 193t-168 80-168-80-77-193z" horiz-adv-x="1003" />
|
||||
<glyph glyph-name="videocam" unicode="" d="m0 100l0 500q0 39 27 66t67 28l594 0q39 0 66-28t27-66l0-39 84 84q20 17 45 17l27 0q26 0 44-18t19-44l0-500q0-27-19-45t-44-17l-27 0q-25 0-45 17l-84 84 0-39q0-39-27-66t-66-28l-594 0q-39 0-67 28t-27 66z m63 0q0-14 8-22t23-9l594 0q13 0 22 9t9 22l0 500q0 14-9 22t-22 9l-594 0q-14 0-23-9t-8-22l0-500z m687 156l31-31 125-125 31 0 0 500-31 0-156-156 0-188z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="camera" unicode="" d="m0 6l0 469q0 35 23 61t55 31l135 23 43 108q12 27 35 43t53 15l312 0q30 0 53-15t35-43l43-108 135-23q33-6 56-31t22-61l0-469q0-39-27-66t-67-28l-812 0q-39 0-67 28t-27 66z m63 0q0-13 8-22t23-9l812 0q14 0 23 9t8 22l0 469q0 27-25 31l-170 28-56 140q-8 20-30 20l-312 0q-22 0-30-20l-56-140-170-28q-25-4-25-31l0-469z m187 282q0 103 73 176t177 74 177-74 73-176-73-177-177-73-177 73-73 177z m63-15q5-77 65-128t137-45 128 65 45 137-66 128-137 45-128-65-44-137z m62 15q0 50 36 87t89 38q16 0 16-16t-16-16q-39 0-66-27t-28-66q0-16-15-16t-16 16z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="photo" unicode="" d="m0-25l0 750q0 53 36 89t89 36l687 0q53 0 89-36t36-89l0-750q0-53-36-89t-89-36l-687 0q-53 0-89 36t-36 89z m63 0q0-25 18-44t44-19l687 0q26 0 44 19t19 44l0 750q0 25-19 44t-44 18l-687 0q-25 0-44-18t-18-44l0-750z m62 156l0 563q0 13 9 22t22 9l625 0q14 0 23-9t9-22l0-563q0-13-9-22t-23-9l-625 0q-13 0-22 9t-9 22z m31 0l483 0-88 100-18 21-252 286-125-145 0-262z m0 311l102 117q10 10 23 10t24-10l246-281 82 94q10 9 23 9t24-9l101-112 0 434-625 0 0-252z m344 96q0 39 27 66t67 27 66-27 28-66-28-67-66-27-67 27-27 67z m31 0q0-26 19-44t44-19 44 19 18 44-18 43-44 19-44-19-19-43z m41-284l108-123 101 0 0 82-125 137z" horiz-adv-x="937" />
|
||||
<glyph glyph-name="attach" unicode="" d="m0 99q0 91 64 155l456 451q82 82 199 82t199-82 82-199-82-199l-344-342q-21-23-44-1t1 44l338 340q65 62 65 153t-65 156-155 64-153-64l-454-448q-44-45-44-109t45-110 111-46 109 45l457 451q27 27 27 66t-27 67-66 27-67-27l-341-344q-24-22-45 1t0 44l341 343q47 45 112 45t110-45 46-111-45-111l-457-449q-64-65-155-65t-154 64-64 154z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="lock" unicode="" d="m0 131l0 219q0 39 27 66t67 28l0 125q0 117 82 199t199 82 199-82 82-199l0-125q39 0 67-28t27-66l0-219q0-117-82-199t-199-82l-188 0q-117 0-199 82t-82 199z m63 0q0-90 64-154t154-65l188 0q90 0 154 65t65 154l0 219q0 14-9 22t-23 9l-562 0q-14 0-23-9t-8-22l0-219z m93 313l63 0 0 125q0 64 46 110t110 46 110-46 46-110l0-125 63 0 0 125q0 90-65 154t-154 64-154-64-65-154l0-125z m94 0l250 0 0 125q0 52-36 89t-89 36-89-36-36-89l0-125z m63-250q0 25 18 44t44 18 44-18 19-44q0-28-22-84-14-41-41-41t-41 41q-21 56-21 84z" horiz-adv-x="750" />
|
||||
<glyph glyph-name="eye" unicode="" d="m0 341l0 18q0 1 2 3l0 4q70 130 206 213t290 83 291-83 205-215l1-1 1-1 0-4q2-6 2-8t-2-8l0-4-1-1-1-1q-68-132-205-215t-291-83-290 83-206 215l0 2q-2 2-2 3z m66 9q65-113 183-182t250-68 250 68 183 182q-65 113-183 182t-250 68-250-68-183-182z m213 0q0 90 65 154t154 65 154-65 65-154-65-154-154-65-154 65-65 154z m32 0q0-78 54-133t133-54 133 54 55 133-55 133-133 55-133-55-54-133z m62 0q0 53 37 89t88 36q16 0 16-16t-16-15q-37 0-65-28t-29-66q0-16-15-16t-16 16z" horiz-adv-x="998" />
|
||||
<glyph glyph-name="tag" unicode="" d="m0 100l0 500q0 51 36 88t89 37l594 0q68 0 105-59l156-250q43-66 0-132l-156-250q-37-59-105-59l-594 0q-53 0-89 36t-36 89z m63 0q0-25 18-44t44-18l594 0q35 0 52 29l157 250q21 33 0 66l-157 250q-17 29-52 29l-594 0q-25 0-44-18t-18-44l0-500z m562 250q0 39 27 66t67 28 66-28 27-66-27-66-66-28-67 28-27 66z m31 0q0-25 19-44t44-18 44 18 18 44-18 44-44 19-44-19-19-44z" horiz-adv-x="1002" />
|
||||
<glyph glyph-name="thumbs-up" unicode="" d="m0-56l0 500q0 39 27 66t67 28l94 0q32 0 60-24 12 6 33 16 123 64 125 226 0 39 28 67t66 27q57 0 105-64t49-147q0-66-8-103 237-6 266-14 43-12 66-43t22-63l0-23q-2-39-27-68 17-34 11-75-7-54-41-86 16-37 0-84-17-58-52-82 7-27 0-54-6-18-14-34-33-60-111-60l-172 0q-92 0-186 21-92 22-127 30l-2 0q0 2-3 2l-4 0 0 2q-28-55-84-55l-94 0q-39 0-67 27t-27 67z m63 0q0-14 8-23t23-9l94 0q13 0 22 9t9 23l0 500q0 13-9 22t-22 9l-94 0q-14 0-23-9t-8-22l0-500z m31 47q0 19 13 33t34 14 33-14 14-33-14-34-33-13-34 13-13 34z m31 0q0-16 16-16t15 16-15 15-16-15z m125 3q0-23 27-27 22-6 145-35 88-20 172-20l172 0q41 0 56 28 6 15 8 23 6 12-2 28t-29 15l-49 0q-16 0-16 16t16 16l51 0q31 0 49 10t22 20 11 30q21 65-39 65l-63 0q-15 0-15 15t15 16l74 0q57 0 69 66 2 22-9 40t-42 19l-61 0q-15 0-15 15t15 16l63 0q61 0 62 45l0 21q0 38-37 47-45 12-337 12 19 59 24 84t5 80q0 57-32 103t-60 45q-31 0-31-31-2-92-46-173t-142-122q-2 0-4-1l-2-1q-25-8-25-33l0-432z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="pencil" unicode="" d="m0-41q0 4 1 8t1 8 1 8 1 6l0 2 74 267q10 31 31 53l325 324 0 2 2 2 150 152q60 59 146 59 106 0 186-80 74-74 81-171t-58-161l-476-481q-24-23-55-31l-263-70-3-1q-3-1-7-2t-9-1-10-1-9-1q-45 0-77 32t-32 77z m63 0q0-19 13-33t33-14q6 0 22 4l115 32q4 58-43 105-45 45-105 43l-32-119q-3-14-3-18z m44 168q67-2 118-52t52-120l116 30 11 6q41 47 34 115t-61 121q-51 49-115 59t-112-24q-7-10-11-21z m131 225q45-2 90-20l295 295q-88 22-144-33z m119-35q38-20 65-45 21-22 41-55l297 299q-16 31-39 55-30 29-67 45z m122-129q17-41 21-82l0-24 242 245 0 2q61 60 31 156z m101 508q106 0 186-80 70-73 78-166l0-22 52 55q45 45 41 111-5 74-62 131-63 62-143 62-60 0-101-41z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="comment" unicode="" d="m0 413q0 156 147 265t353 109 354-109 146-266-146-265-354-110q-47 0-96 8-29-35-89-78t-122-55l-9 0q-12 0-20 8t-8 20q0 6 2 12 0 1 13 21t18 29 13 30 13 36 4 32l0 2q-102 53-160 134t-59 176z m63 0q0-75 48-143t137-111q33-18 33-57l0-6q0-41-21-92 60 37 95 80 18 24 49 24 4 0 8-2 45-6 88-6 182 0 310 92t127 221-127 220-310 92-310-92-127-220z m93 0q0 89 102 154t242 64q16 0 16-15t-16-16q-125 0-219-57t-93-131q0-15-16-15t-16 15z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="location" unicode="" d="m0 475q0 156 109 266t266 109 266-109 109-266q0-78-28-160t-85-166-101-141-110-133q-20-25-49-25l-4 0q-29 0-49 25-66 77-110 133t-101 141-85 166-28 160z m63 0q0-72 28-150t85-161 95-128 100-120l2 0q2-2 2-4l4 4q62 73 100 120t94 128 86 161 29 150q0 129-92 221t-221 91-221-91-91-221z m125 8q0 78 54 133t133 54 133-54 55-133-55-133-133-55-133 55-54 133z m31 0q0-65 46-111t110-45 110 45 46 111-46 110-110 46-110-46-46-110z" horiz-adv-x="750" />
|
||||
<glyph glyph-name="cup" unicode="" d="m0 538l0 93q0 26 17 43t42 20l39 113q13 43 58 43l563 0q45 0 58-43l39-113q24-2 41-20t18-43l0-93q0-26-19-44t-44-19l-33 0 1-3q1-3 1-5l-62-562q-4-24-22-39t-41-16l-437 0q-24 0-41 16t-22 39l-62 562q0 2 1 5l1 3-33 0q-26 0-44 19t-19 44z m63 0l749 0 0 93-749 0 0-93z m62 156l625 0-31 93-563 0z m31-219l10-94 543 0 10 94-563 0z m14-125l35-312 465 0 35 312-535 0z m39-344l10-93 437 0 10 93-457 0z" horiz-adv-x="875" />
|
||||
<glyph glyph-name="trash" unicode="" d="m0 569l0 68q2 37 29 63t65 25l94 0 0 31q0 39 27 67t66 27l313 0q39 0 66-27t28-67l0-31 93 0q37 0 65-25t29-63l0-68q0-26-19-44t-44-19l0-531q0-53-36-89t-88-36l-500 0q-53 0-89 36t-36 89l0 531q-26 0-44 19t-19 44z m63 0l749 0 0 62q0 14-8 23t-23 8l-687 0q-14 0-23-8t-8-23l0-62z m62-594q0-25 19-44t44-19l500 0q25 0 43 19t19 44l0 531-625 0 0-531z m63 31l0 407q0 13 8 22t23 9l62 0q14 0 23-9t9-22l0-407q0-13-9-22t-23-9l-62 0q-14 0-23 9t-8 22z m31 0l62 0 0 407-62 0 0-407z m31 719l375 0 0 31q0 14-9 23t-22 8l-313 0q-13 0-22-8t-9-23l0-31z m125-719l0 407q0 13 9 22t22 9l63 0q13 0 22-9t9-22l0-407q0-13-9-22t-22-9l-63 0q-13 0-22 9t-9 22z m31 0l63 0 0 407-63 0 0-407z m157 0l0 407q0 13 8 22t23 9l62 0q14 0 23-9t9-22l0-407q0-13-9-22t-23-9l-62 0q-14 0-23 9t-8 22z m31 0l62 0 0 407-62 0 0-407z" horiz-adv-x="875" />
|
||||
<glyph glyph-name="doc" unicode="" d="m0-25l0 625q0 39 27 66t67 28l31 0 0 62q0 39 27 67t67 27l687 0q39 0 67-27t27-67l0-781q0-53-36-89t-89-36l-750 0q-53 0-89 36t-36 89z m63 0q0-25 18-44t44-19l750 0q25 0 44 19t18 44l0 781q0 14-8 23t-23 8l-687 0q-14 0-23-8t-8-23l0-750q0-13-9-22t-23-9-22 9-9 22l0 625-31 0q-14 0-23-9t-8-22l0-625z m187 16q0 15 16 15l250 0q15 0 15-15t-15-16l-250 0q-16 0-16 16z m0 93q0 16 16 16l250 0q15 0 15-16t-15-15l-250 0q-16 0-16 15z m0 94q0 16 16 16l250 0q15 0 15-16 0-6-5-11t-10-4l-250 0q-16 0-16 15z m0 94q0 16 16 16l593 0q16 0 16-16t-16-16l-593 0q-16 0-16 16z m0 94q0 15 16 15l593 0q16 0 16-15t-16-16l-593 0q-16 0-16 16z m0 109l0 219q0 13 9 22t22 9l219 0q14 0 22-9t9-22l0-219q0-14-9-22t-22-9l-219 0q-13 0-22 9t-9 22z m63 31l156 0 0 156-156 0 0-156z m281-515q0 15 15 15l250 0q16 0 16-15t-16-16l-250 0q-15 0-15 16z m0 93q0 16 15 16l250 0q16 0 16-16t-16-15l-250 0q-15 0-15 15z m0 94q0 16 15 16l250 0q16 0 16-16 0-6-5-11t-11-5l-250 0q-15 0-15 16z m0 281q0 16 15 16l250 0q16 0 16-16t-16-15l-250 0q-15 0-15 15z m0 94q0 16 15 16l250 0q16 0 16-16t-16-16l-250 0q-15 0-15 16z m0 94q0 15 15 15l250 0q16 0 16-15t-16-16l-250 0q-15 0-15 16z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="note" unicode="" d="m0-25l0 750q0 39 27 66t67 28l656 0q25 0 45-18l187-187q18-20 18-45l0-594q0-39-27-66t-67-28l-812 0q-39 0-67 28t-27 66z m63 0q0-14 8-23t23-8l812 0q14 0 23 8t8 23l0 563-124 0q-40 0-67 27t-27 66l0 125-625 0q-14 0-23-9t-8-22l0-750z m62 78q0 16 16 16l718 0q16 0 16-16t-16-15l-718 0q-16 0-16 15z m0 94q0 16 16 16l718 0q16 0 16-16t-16-16l-718 0q-16 0-16 16z m0 94q0 15 16 15l718 0q16 0 16-15t-16-16l-718 0q-16 0-16 16z m0 93q0 16 16 16l718 0q16 0 16-16t-16-15l-718 0q-16 0-16 15z m0 110l0 187q0 14 9 23t22 8l219 0q14 0 22-8t9-23l0-187q0-14-9-23t-22-8l-219 0q-13 0-22 8t-9 23z m63 31l156 0 0 125-156 0 0-125z m281-47q0 16 15 16l375 0q16 0 16-16t-16-15l-375 0q-15 0-15 15z m0 94q0 16 15 16l157 0q15 0 15-16t-15-16l-157 0q-15 0-15 16z m0 94q0 15 15 15l157 0q15 0 15-15t-15-16l-157 0q-15 0-15 16z m281 15q0-25 19-44t43-18l125 0-187 187 0-125z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="cog" unicode="" d="m0 307l0 86q0 21 15 39t36 22l96 19q5 20 15 41l-53 80q-13 20-10 42t18 38l59 59q19 19 45 19 19 0 35-11l80-53q21 10 41 16l20 95q3 22 21 36t39 15l86 0q21 0 39-15t22-36l19-95q20-6 41-16l80 53q16 11 35 11 26 0 45-19l59-59q17-15 19-38t-11-42l-53-80q10-22 16-41l95-20q22-3 36-21t15-39l0-86q0-22-15-39t-36-22l-95-19q-6-20-16-41l53-80q13-20 11-42t-19-38l-59-59q-19-19-45-19-19 0-35 11l-80 53q-21-10-41-16l-19-95q-4-22-22-36t-39-15l-86 0q-21 0-39 14t-21 37l-20 95q-20 6-41 16l-80-53q-16-11-35-11-26 0-45 19l-59 59q-15 15-18 38t10 42l53 80q-10 21-15 41l-96 19q-22 4-36 22t-15 39z m63 0l95-19q35-6 47-40 6-17 14-35 15-31-4-60l-55-82 61-61 82 55q15 10 33 10 16 0 27-6 18-8 35-14 34-12 40-47l19-96 86 0 20 96q5 35 39 47 17 6 35 14 11 6 27 6 18 0 33-10l82-55 61 61-55 82q-19 29-4 60 8 18 14 35 12 34 47 40l95 19 0 86-95 20q-35 5-47 39-6 17-14 35-15 31 4 60l55 82-61 61-82-55q-15-10-33-10-16 0-27 6-18 8-35 14-34 12-39 47l-20 95-86 0-19-95q-6-35-40-47-17-6-35-14-11-6-27-6-18 0-33 10l-82 55-61-61 55-82q19-29 4-60-8-18-14-35-12-34-47-39l-95-20 0-86z m218 43q0 90 65 154t154 65 154-65 65-154-65-154-154-65-154 65-65 154z m28 0q0-80 55-136t136-55 136 55 55 136-55 136-136 55-136-55-55-136z m66 0q0 53 36 89t89 36 89-37 36-89-36-88-89-36-89 36-36 89z m31 0q0-39 28-66t66-28 66 28 28 66-28 66-66 28-66-28-28-66z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="params" unicode="" d="m0 538q0 76 63 124l0 94q0 39 27 67t66 27 67-27 27-67l0-94q63-48 63-124t-63-125l0-469q0-39-27-67t-67-27-66 27-27 67l0 469q-63 48-63 125z m63 0q0-12 3-26l2-6q4-13 12-23 8-12 20-21t25-12q16-6 31-6t32 6q13 4 25 13 12 8 19 20 8 10 12 23l2 6q4 14 4 26t-4 25q-2 4-2 6-4 13-12 23-7 12-19 21t-25 12q-16 6-32 6t-31-6q-14-4-25-13-10-8-20-20-8-10-12-23l-2-6q-3-14-3-26z m62-594q0-14 9-23t22-9 23 9 9 23l0 441q-16-4-32-4t-31 4l0-441z m0 746q16 4 31 4t32-4l0 66q0 14-9 23t-23 8-22-8-9-23l0-66z m219-527q0 76 62 125l0 468q0 39 28 67t66 27 66-27 28-67l0-468q62-49 62-125t-62-125l0-94q0-39-28-67t-66-27-66 27-28 67l0 94q-62 48-62 125z m62 0q0-12 4-26l2-6q4-13 12-23 8-12 19-21t26-12q15-6 31-6t31 6q14 4 26 13 11 8 19 20 8 10 12 23 0 2 2 6 4 14 4 26t-4 25l-2 6q-4 13-12 23-8 12-19 20-12 10-26 13-15 6-31 6t-31-6q-14-3-26-13-9-8-19-20-8-10-12-23l-2-6q-4-14-4-25z m63-219q0-14 9-23t22-9 22 9 9 23l0 66q-15-4-31-4t-31 4l0-66z m0 371q15 4 31 4t31-4l0 441q0 14-9 23t-22 8-22-8-9-23l0-441z m219 223q0 76 62 124l0 94q0 39 27 67t67 27 66-27 27-67l0-94q63-48 63-124t-63-125l0-469q0-39-27-67t-66-27-67 27-27 67l0 469q-62 48-62 125z m62 0q0-12 4-26l2-6q4-13 12-23 7-12 19-21t25-12q16-6 32-6t31 6q14 4 25 13 12 8 20 20 8 10 12 23 0 2 2 6 3 14 3 26t-3 25l-2 6q-4 13-12 23-8 12-20 20-11 9-25 13-16 6-31 6t-32-6q-13-4-25-13-12-8-19-20-8-10-12-23l-2-6q-4-14-4-26z m62-594q0-14 9-23t23-9 22 9 9 23l0 441q-16-4-31-4t-32 4l0-441z m0 746q16 4 32 4t31-4l0 66q0 14-9 23t-22 8-23-8-9-23l0-66z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="calendar" unicode="" d="m0-66l0 738q0 35 24 60t60 24l135 0 0 63q0 13 9 22t22 9 22-9 9-22l0-63 188 0 0 63q0 13 9 22t22 9 22-9 9-22l0-63 188 0 0 63q0 13 9 22t22 9 22-9 9-22l0-63 135 0q35 0 60-24t24-60l0-738q0-35-24-60t-60-24l-832 0q-35 0-60 24t-24 60z m63 0q0-10 5-16t16-6l832 0q10 0 16 6t5 16l0 738q0 10-5 16t-16 6l-135 0 0-63q0-13-9-22t-22-9-22 9-9 22l0 63-188 0 0-63q0-13-9-22t-22-9-22 9-9 22l0 63-188 0 0-63q0-13-9-22t-22-9-22 9-9 22l0 63-135 0q-10 0-16-6t-5-16l0-738z m156 135l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m219-312l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m218-312l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="sound" unicode="" d="m0 163q0 39 27 66l98 98 0 429q0 30 16 53t43 33q15 8 35 8 39 0 66-27l688-688q45-45 19-101-10-28-33-43t-53-16l-429 0-98-98q-27-27-66-27t-67 27l-219 219q-27 27-27 67z m63 0q0-14 9-22l219-219q8-10 22-10t21 10l98 98 2 0-264 264 0-2-98-98q-9-8-9-21z m123 150l277-277q12 2 14 2l377 0-666 666 0-377q0-2-2-14z m2 433l708-708 10 0q22 0 30 19t-8 33l-688 688q-8 9-21 9-6 0-12-1-19-8-19-30l0-10z m343 73q0 13 9 22t23 9q181 0 309-128t128-309q0-14-9-23t-22-9-23 9-9 23q0 154-110 264t-264 110q-14 0-23 9t-9 23z m16-110q0 16 16 16 128 0 220-92t92-220q0-16-16-16t-15 16q0 117-82 199t-199 82q-16 0-16 15z" horiz-adv-x="1001" />
|
||||
<glyph glyph-name="clock" unicode="" d="m0 350q0 121 86 213l43 236q4 22 21 36t41 15l250 0q22 0 39-15t22-36l45-244q57-64 72-144l2 1q2 1 4 1 25 0 44-19t19-44-19-44-44-18q-2 0-4 0l-2 1q-17-84-76-148l-45-240q-4-22-20-36t-40-15l-250 0q-24 0-40 15t-21 36l-45 240q-82 90-82 209z m63 0q0-103 73-177t177-73 176 73 74 177-74 177-176 73-177-73-73-177z m31 0q0 14 9 22t22 9 23-9 8-22-8-22-23-9-22 9-9 22z m54-132q0 13 9 22t23 8 22-8 9-22-9-22-22-10-23 10-9 22z m0 265q0 13 9 22t23 9 22-9 9-22-9-23-22-8-23 8-9 23z m8-402l32-169 250 0 31 169q-74-43-156-43t-157 43z m4 539q74 42 156 42t157-42l-32 167-250 0z m121-457q0 13 9 22t23 9 22-9 9-22-9-23-22-9-23 9-9 23z m0 187q0 14 10 22l162 134q8 6 14-1t2-14l-76-94-59-70q-8-8-21-8t-23 9-9 22z m0 188q0 13 9 22t23 9 22-9 9-22-9-23-22-9-23 9-9 23z m133-320q0 13 9 22t21 8 23-8 10-23q0-12-10-21t-23-10-21 10-9 22z m55 132q0 14 9 22t22 9 22-9 9-22-9-22-22-9-22 9-9 22z" horiz-adv-x="687" />
|
||||
<glyph glyph-name="lightbulb" unicode="" d="m0 506q0 143 101 243t243 101 243-101 101-243q0-55-30-121t-71-141-56-115q-15-39-31-94t-24-82-27-53-42-39-63-11-64 11-41 39-26 53-25 82-32 94q-13 43-55 116t-72 140-29 121z m63 0q0-64 82-213 37-64 52-99l293 0q16 35 53 99 82 151 82 213 0 117-82 199t-199 82-199-82-82-199z m93 0q0 78 55 133t133 55q15 0 15-16t-15-16q-65 0-111-45t-45-111q0-15-16-15t-16 15z m67-375q11-33 19-60l213 27q2 12 10 33l-242 0z m29-90q10-35 18-60l154 19q6 16 12 38 2 5 4 15t3 12z m29-89q12-26 25-33t38-7q29 0 43 10t27 45z" horiz-adv-x="687" />
|
||||
<glyph glyph-name="tv" unicode="" d="m36 47q-72 303 0 606 10 43 53 47 205 25 410 25t410-25q45-4 55-47 72-303 0-606-12-43-55-47-94-11-197-17 6-4 6-8 0-14-65-22t-154-9-154 9-65 22q0 4 6 8-103 6-197 17-43 4-53 47z m61 16q402-51 806 0 69 287 0 574-404 51-806 0-69-287 0-574z m60 84q-66 207 0 412 6 18 24 21 129 26 256 26t255-26q18-4 24-21 33-102 33-205t-33-207q-6-18-24-22-129-25-255-25t-256 25q-18 4-24 22z m32 10q248-51 498 0 64 197 0 392-250 53-498 0-65-195 0-392z m62 209l8 88q4 13 19 15l143 12q16 0 16-16t-16-15l-117-8q-16-2-18-18l-6-58q0-16-15-16t-14 16z m498-219q0 16 16 16l93 0q16 0 16-16t-16-16l-93 0q-16 0-16 16z m31 94q0 15 16 15l94 0q15 0 15-15t-15-16l-94 0q-16 0-16 16z m0 93q0 16 16 16l94 0q15 0 15-16t-15-15l-94 0q-16 0-16 15z m0 188q0 19 14 33t33 14 33-14 14-33-14-33-33-14-33 14-14 33z m32 0q0-16 15-16t16 16-16 16-15-16z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="desktop" unicode="" d="m0 100l0 625q0 39 27 66t67 28l812 0q39 0 67-28t27-66l0-625q0-39-27-66t-67-28l-312 0 0-37 195-25q23-6 23-32 0-13-8-22t-23-9l-562 0q-14 0-23 9t-8 22q0 26 23 32l195 25 0 37-312 0q-39 0-67 28t-27 66z m63 0q0-14 8-22t23-9l812 0q14 0 23 9t8 22l0 625q0 14-8 22t-23 9l-812 0q-14 0-23-9t-8-22l0-625z m62 125l0 437q0 14 9 23t22 9l688 0q13 0 22-9t9-23l0-437q0-14-9-22t-22-9l-688 0q-13 0-22 9t-9 22z m31 0l688 0 0 437-688 0 0-437z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="mobile" unicode="" d="m0-56l0 812q0 39 27 67t67 27l500 0q39 0 66-27t28-67l0-812q0-39-28-67t-66-27l-500 0q-39 0-67 27t-27 67z m63 0q0-14 8-23t23-9l500 0q13 0 22 9t9 23l0 62-562 0 0-62z m0 94l562 0 0 624-562 0 0-624z m0 656l562 0 0 62q0 14-9 23t-22 8l-500 0q-14 0-23-8t-8-23l0-62z m218 47q0 15 16 15l94 0q15 0 15-15t-15-16l-94 0q-16 0-16 16z m32-782q0 16 15 16l31 0q16 0 16-16t-16-15l-31 0q-15 0-15 15z" horiz-adv-x="687" />
|
||||
<glyph glyph-name="cd" unicode="" d="m5 276q-18 127 29 260 51 126 158 209t234 99 258-29q127-51 210-158t100-234-30-259q-51-126-157-209t-234-100-260 30q-127 51-209 157t-99 234z m89 236q-68-168 4-335t239-233 335 5 233 239-5 334-239 233-334-4-233-239z m57-23q57 144 200 205 15 8 21-7t-8-21q-131-56-183-189-6-14-21-8t-9 20z m59-24q47 121 166 172 14 6 20-9t-8-20q-106-45-151-154-6-14-19-8t-8 19z m57-21q39 94 132 135l2 1q14 6 20-8t-8-21q-84-35-117-119-6-16-21-10t-8 22z m58-24q29 73 101 103t143 1 103-101 1-143-101-103-143-1-103 101-1 143z m58-24q-19-48 2-96t68-66 96 2 66 68-2 96-68 66-96-2-66-68z m57-23q10 24 35 35t47 1 35-35 1-47-35-35-47-1-35 35-1 47z m31-35q5-11 16-16t24 0 16 16 0 24-16 16-24 0-16-16 0-24z m106-210q-6 15 8 21 84 35 117 119 6 16 21 10t8-22q-39-95-132-136l-2 0q-14-6-20 8z m24-57q-6 13 9 21 108 45 151 153 6 15 20 9t9-21q-49-119-168-170-14-6-21 8z m25-58q-6 15 8 21 131 56 183 189 6 14 21 8t9-20q-57-144-200-205l0-2q-15-6-21 9z" horiz-adv-x="998" />
|
||||
<glyph glyph-name="inbox" unicode="" d="m0 38l0 218q0 8 2 18l125 469q6 19 22 32t39 12l624 0q22 0 39-12t22-32l125-469q2-10 2-18l0-218q0-53-36-89t-89-37l-750 0q-53 0-89 37t-36 89z m63 0q0-26 18-45t44-18l750 0q25 0 44 18t18 45l0 218-125 469-624 0-125-469 0-218z m58 226l108 375q5 23 29 23l484 0q24 0 29-23l108-375q4-16-5-27t-24-12l-143 0-45-90q-17-35-57-35l-210 0q-40 0-57 35l-45 90-143 0q-15 0-24 12t-5 27z m45 24l127 0q39 0 57-36l45-89 210 0 45 89q18 36 57 36l127 0-92 343-484 0z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="globe" unicode="" d="m0 366q0 201 142 342t342 142 343-142 142-342-142-343-343-142-342 142-142 343z m63-16q7-166 125-283 52 37 109 60-43 106-47 223l-187 0z m0 31l187 0q4 104 37 196-62 25-117 68-102-113-107-264z m128 287q51-39 108-62 43 101 117 176-131-22-225-114z m20-623q88-76 205-95-64 64-105 148-53-19-100-53z m70 305q4-111 45-213 69 22 143 26l0 187-188 0z m0 31l188 0 0 157q-78 3-153 29-31-88-35-186z m47 215q69-23 141-27l0 218-2 0q-90-76-139-191z m12-486q49-100 127-166l2 0 0 187q-69-4-129-21z m160-166l2 0q78 66 127 166-61 17-129 21l0-187z m0 219q74-4 143-26 41 102 45 213l-188 0 0-187z m0 218l188 0q-4 98-36 186-74-26-152-29l0-157z m0 188q72 4 141 27-49 115-139 191l-2 0 0-218z m53-619q117 19 205 95-47 34-100 53-41-84-105-148z m0 832q74-75 117-176 57 23 107 62-93 92-224 114z m119-655q57-23 109-60 117 117 125 283l-187 0q-4-117-47-223z m10 450q33-92 37-196l187 0q-6 151-107 264-55-43-117-68z" horiz-adv-x="969" />
|
||||
<glyph glyph-name="cloud" unicode="" d="m0 178q0 55 27 102t75 74q-8 21-8 43 0 58 41 99t99 42q20 0 43-8 34 74 102 119t152 45q110 0 189-73t91-181q82-16 135-80t54-151q0-97-68-166t-166-68l-563 0q-84 0-143 60t-60 143z m63 0q0-58 41-99t99-41l563 0q70 0 121 50t50 121q0 63-39 110t-99 58q-35 8-42 15t-9 42q-8 84-70 141t-147 56q-62 0-117-34t-80-93q-10-19-12-24t-8-13-15-6-22 6q-21 10-43 8-33 0-55-22t-23-56q0-10 4-24 14-33 10-44t-37-30q-70-41-70-121z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="paper-plane" unicode="" d="m0 191q-2 18 14 28l937 625q8 6 18 6t18-6q15-10 13-31l-156-938q-4-13-16-21-7-4-15-4-6 0-12 2l-303 121-64-107q-10-16-28-16t-27 16l-115 201-244 97q-18 8-20 27z m98 11l189-77q2-2 5-3l3-2 527 564z m221-104l87-152 504 787z m183-62q12-2 20-4l265-108 125 748z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="fire" unicode="" d="m0 135q0 76 18 167t33 156 13 170-33 222l20-14q19-13 51-44t64-69 65-97 48-118q63 94 65 186l31-35q29-36 61-106t31-139l15 20q16 21 33 60t16 75q96-119 135-251t10-249q-14-51-31-84t-56-68-107-50-169-17q-137 0-225 85t-88 200z m63 0q0-88 69-155t181-68q74 0 128 11t84 26 49 42 27 44 14 49q39 159-64 344-61-103-145-172 0 92-10 176t-25 113q-23-58-113-185 0 7-12 50t-44 123-75 137q8-125-33-310-31-143-31-225z m50-23q0 146 41 263l16 47 16-41q19-56 66-164 20 30 49 74l47 75 0-53q0-66 23-135 39 20 68 41t43 36 36 40l27 30 6-32q21-119-20-218-4-10-13-10-4 0-6 2-14 6-8 19 27 73 19 168-58-66-154-113l-15-6-6 16q-24 66-28 111-31-45-58-84l-16-21-12 23q-43 98-64 149-25-84-25-217 0-16-16-16t-16 16z" horiz-adv-x="688" />
|
||||
<glyph glyph-name="graduation-cap" unicode="" d="m0 600q0 33 21 59t51 33l407 94q11 1 21 1t22-1l406-94q31-8 51-33t21-59-21-59-51-33l-84-19 0-264q0-68-84-112t-260-44-260 44-84 112l0 264-84 19q-31 8-51 33t-21 59z m63 0q0-25 23-31l406-94 16 0 406 94q23 6 23 31t-23 31l-406 94-16 0-406-94q-23-6-23-31z m156-375q0-20 29-40t97-37 155-17 155 17 97 37 29 40l0 250-259-61q-12-1-22-1t-21 1l-260 61 0-250z m656-250q0 31 20 78t42 47 43-47 20-78q0-25-19-44t-44-19-43 19-19 44z m31 188l0 281q0 13 9 22t22 9 23-9 9-22l0-281q0-14-9-23t-23-9-22 9-9 23z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="megaphone" unicode="" d="m0 413q0 66 36 111t89 45l289 0q63 0 119 45t96 125l2 0q58 111 150 111 102 0 160-131t59-307-59-306-160-131q-92 0-150 111l-2 0q-78 155-199 168-6-2-8-2l0-2q-6-2-10-7-2-2-2-4-4-6-4-12l0-221q0-8 16-26t16-36l0-32q0-25-19-43t-44-19l-125 0q-25 0-44 19t-18 43l0 282q0 25-19 44t-44 18q-53 0-89 45t-36 111z m63 0q0-40 18-67t44-27l219 0q-31 37-31 94t31 93l-219 0q-25 0-44-27t-18-66z m169-157q18-29 18-62l0-282 125 0 0 28-2 2-2 2q-27 33-27 62l0 219q0 16 6 31l-118 0z m112 157q0-40 18-67t44-27l8 0q86 0 162-63-13 74-13 157 0 80 13 156-76-63-162-63l-8 0q-25 0-44-27t-18-66z m281 0q0-47 6-94l88 0q25 0 44 27t18 67-18 66-44 27l-88 0q-6-47-6-93z m14-157q19-97 57-158t85-60q65 0 111 109t45 266-45 265-111 109q-47 0-85-60t-57-158l80 0q52 0 89-45t36-112-36-111-89-45l-80 0z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="database" unicode="" d="m0 53l0 594q0 98 131 150t307 53 306-53 131-150l0-594q0-97-131-150t-306-53-307 53-131 150z m63 0q0-59 109-100t266-41 265 41 109 100l0 117q-46-48-150-75t-224-26-225 26-150 75l0-117z m0 188q0-59 109-100t266-41 265 41 109 100l0 117q-46-49-150-75t-224-27-225 27-150 75l0-117z m0 187q0-58 109-99t266-41 265 41 109 99l0 108q-58-45-160-69t-214-23-215 23-160 69l0-108z m0 219q0-59 109-100t266-41 265 41 109 100-109 99-265 41-266-41-109-99z m625-609q0 13 8 22t23 9 22-9 9-22-9-23-22-9-23 9-8 23z m0 187q0 14 8 22t23 9 22-9 9-22-9-22-22-9-23 9-8 22z m0 188q0 13 8 22t23 9 22-9 9-22-9-23-22-9-23 9-8 23z" horiz-adv-x="875" />
|
||||
<glyph glyph-name="key" unicode="" d="m0-88l0 94q0 20 18 39l379 379q-22 57-22 114 0 128 92 220t221 92 220-92 92-220-92-221-220-92q-57 0-114 22l-74-73 0-74q0-25-19-44t-43-18l-63 0 0-63q0-25-19-44t-43-18l-73 0-45-45q-17-18-39-18l-93 0q-26 0-44 19t-19 44z m63 0l87 0 45 45q18 18 45 18l73 0 0 63q0 25 18 43t44 19l63 0 0 74q0 26 17 43l61 61 35 35 10 10q60-35 127-35 103 0 176 73t73 177-73 176-176 73-177-73-73-176q0-67 35-127l-45-45-365-364 0-90z m562 713q0 4 2 10 23 65 88 88 15 6 27-4 74-53 127-127 6-8 6-17 0-4-2-10-23-65-88-88-15-6-27 4-74 53-127 127-6 8-6 17z m31 0q51-70 119-119 51 18 69 69-49 68-119 119-51-18-69-69z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="beaker" unicode="" d="m2 354q10 49 55 68l424 170q-12 20-12 41 0 33 23 57l43 43q24 23 56 23t56-23l240-240q23-24 23-56t-23-56l-43-45q-24-21-55-21-23 0-43 12l-168-418q-17-47-68-57-8-2-18-2l-4 0q-37 0-62 27l-398 393q-36 35-26 84z m62-11q-3-16 8-28l397-393q10-10 21-10l8 0q16 4 24 20l146 371q-58 61-123 85t-146 33-123 23l-194-78q-15-6-18-23z m186-24q0 25 19 44t44 18 44-18 18-44-18-44-44-19-44 19-19 44z m31 0q0-14 9-23t23-8 22 8 9 23-9 22-22 9-23-9-9-22z m43 144q30-6 80-13 59-6 93-13t87-33 98-70l41 102 55-55q11-11 21 0l45 45q12 10 0 22l-242 242q-10 10-22 0l-45-45q-9-12 0-22l55-54z m51-332q0 14 9 23t22 9 23-9 9-23-9-22-23-9-22 9-9 22z m63 141q0 33 22 56t56 22 55-22 23-56-23-56-55-22-56 22-22 56z m31 0q0-20 14-33t33-14 33 14 14 33-14 33-33 14-33-14-14-33z m375 500q0 33 22 56t56 22 56-22 22-56-22-56-56-22-56 22-22 56z m31-172q0 14 9 22t22 9 23-9 9-22-9-22-23-9-22 9-9 22z m0 172q0-20 14-33t33-14 33 14 14 33-14 33-33 14-33-14-14-33z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="truck" unicode="" d="m0 319l0 343q0 40 27 67t67 27l469 0q39 0 66-27t27-67l0-62 125 0q51 0 78-41l125-187q16-24 16-53l0-188q0-39-27-66t-67-27l-35 0q-12-42-45-68t-76-26-76 26-45 68l-164 0q-12-42-45-68t-76-26-76 26-45 68l-35 0q-40 0-67 27t-27 66l0 94q-39 0-67 27t-27 67z m63 0q0-14 8-23t23-8l469 0q13 0 22 8t9 23l0 343q0 14-9 23t-22 9l-469 0q-14 0-23-9t-8-23l0-343z m93-188q0-13 9-22t23-9l35 0q11 41 45 67t76 27 76-27 45-67l164 0q12 41 45 67t76 27 76-27 45-67l35 0q14 0 23 9t8 22l0 188q0 10-5 17l-125 188q-8 14-26 14l-125 0 0-219q0-39-27-67t-66-27l-407 0 0-94z m125-62q0-26 19-44t44-19 44 19 18 44-18 44-44 18-44-18-19-44z m407 0q0-26 18-44t44-19 44 19 18 44-18 44-44 18-44-18-18-44z m0 219l0 187q0 14 8 22t23 9l31 0q18 0 25-13l94-141q6-8 6-18l0-46q0-14-9-23t-22-9l-125 0q-14 0-23 9t-8 23z m31 0l125 0 0 46-94 141-31 0 0-187z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="money" unicode="" d="m3 243q31 97 107 173 59 61 203 145 129 74 178 123 55 55 74 121 6 16 16 27 14 12 29 16 35 8 61-16l312-312q26-27 16-63-31-99-108-173-58-61-203-145-129-74-177-123-55-53-75-121-6-16-15-27-14-12-30-16-35-8-60 16l-313 312q-25 27-15 63z m60-18l99-99 115-115 99-99q25 79 84 140t128 102l138 80t129 101 83 140l-157 157-155 155q-24-78-83-139t-129-102l-139-80t-128-101-84-140z m274-199l21 29q22 27 47 53 22 23 55 49 11 9 21 0 12-12 0-24l-2 0q-31-25-52-47-24-23-43-48l-20-28q-2-2-2-4-12-12-23 0-8 10-2 20z m27 359q2 18 10 33 8 18 19 32 0 2-5 5-4 2-4 7t4 10 8 5 7-4q4-4 8-6 8 8 20 16t28 12 29 1 24-15q8-8 8-18t-8-15q-5-6-15-4-6 2-18 4-9 4-20 3t-23-11q20-20 51-57 14 8 31 14 16 6 32 8t31-3 31-17q14-12 20-25 4-14 2-30 0-15-10-33-8-19-22-37 8-6 16-13 4-2 5-7t-3-9-9-5-9 3q-9 8-15 16-18-18-35-24-16-6-34-6-15 2-28 8t-20 15-8 17 8 16 13 7 13-3 13-8 13-7 17 0 20 12q-21 21-56 62-32-17-65-19-29-2-50 15-14 12-20 26t-4 29z m42 11q-1-7 1-14t8-10q10-10 22-9t33 10q-30 32-49 51-6-8-10-14t-5-14z m112 143q-9 10 0 22 2 2 4 2 32 25 53 47 23 23 43 49l19 27q2 4 4 4 12 12 22 0 10-10 2-22l-22-29q-21-27-47-53-21-23-54-48-12-10-24 1z m4-195q32-35 53-56 6 5 10 13t6 16 0 14-9 14-15 9-15 1-16-5q-4-2-14-6z" horiz-adv-x="1001" />
|
||||
<glyph glyph-name="food" unicode="" d="m0 116q0 33 23 55t55 23l84 0q22 121 117 201t221 80q102 0 186-55t126-144l143 70q12 6 24 2t17-16 2-23-16-18l-150-76q4-11 6-21l84 0q33 0 56-23t22-55q0-24-16-41l-109-123 0-24q0-33-22-56t-56-22l-594 0q-33 0-55 22t-23 56l0 24-109 123q-16 17-16 41z m63 0l125-141 0-47q0-16 15-16l594 0q15 0 15 16l0 47 125 141q0 15-15 15l-844 0q-15 0-15-15z m130 78l34 0q21 95 97 157t176 62q84 0 153-46t103-120l27 15q-37 82-113 132t-170 50q-111 0-198-72t-109-178z m55 291q-16 39 16 113 25 61 13 90l-2 0 0 6q0 15 16 15 10 0 14-9 17-42-14-114-25-62-12-92l0-3q0-16-15-16-10 0-14 8l0 2-2 0z m10-291l33 0q20 68 77 112t132 44q66 0 120-36t79-95l30 14q-32 66-93 107t-136 41q-86 0-153-52t-89-135z m66 0l33 0q18 43 57 68t86 26 86-26 57-68l5 0 24 11q-22 51-68 83t-104 31q-61 0-108-35t-68-90z m69 0l37 0q29 31 70 31t68-31l39 0q-37 62-107 62t-107-62z m76 429l0 2q-16 39 13 114 28 60 14 89l0 6q0 16 14 16 12 0 15-10 18-41-13-113-26-63-14-92 2-2 2-4 0-15-16-15-9 0-15 7z m160-134l0 2q-16 39 16 111 25 62 11 90l0 6q0 15 16 15 10 0 14-9 17-40-14-114-26-60-14-90l0-2q2-2 2-3 0-16-15-16-10 0-14 10l-2 0z m160-295l18 0q0 2-1 4t-1 4z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="shop" unicode="" d="m0 413l0 31q0 31 20 56l93 125q4 6 12 14l0 148q0 26 19 44t44 19l624 0q26 0 44-19t19-44l0-148q8-8 12-14l93-125q20-25 20-56l0-32q0-39-27-66t-67-27l0-407q0-25-18-43t-44-19l-688 0q-25 0-44 19t-18 43l0 407q-39 0-67 27t-27 66z m63 0q0-14 8-23t23-9l58 0 125 219-89 0q-16 0-26-12l-94-125q-5-9-5-19l0-31z m93-501l203 0 0 313q0 14 9 22t23 9l234 0q14 0 22-9t9-22l0-313 188 0 0 407-688 0 0-407z m32 469l130 0 63 219-68 0z m0 281l624 0 0 125-624 0 0-125z m164-281l132 0 0 219-70 0z m39-468l234 0 0 312-234 0 0-312z m125 468l132 0-62 219-70 0 0-219z m103 219l63-219 130 0-124 219-69 0z m104 0l125-219 58 0q14 0 23 9t8 23l0 31q0 10-5 19l-94 125q-10 12-26 12l-89 0z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="diamond" unicode="" d="m0 502q0 28 18 45l160 158q17 20 43 20l558 0q26 0 43-20l160-158q18-17 18-43 0-23-16-43l-437-464q-20-22-47-22t-47 22l-437 464q-16 18-16 41z m63 4l134 0 84 84-72 61z m27-31l307-328-196 328-111 0z m146 0l231-383-76 383-155 0z m4 31l143 0-78 65z m2 156l61-50 51 50-112 0z m84-70l80-66 71 58-86 71z m96-117l78-389 78 389-156 0z m8 31l140 0-70 57z m0 156l70-58 68 58-138 0z m95-78l69-58 80 66-65 63z m8-492l231 383-155 0z m71 55l306 328-111 0z m13 359l143 0-65 65z m29 156l51-50 61 50-112 0z m73-72l84-84 133 0-145 145z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="t-shirt" unicode="" d="m4 580q-14 41 20 69l156 125q17 13 39 13l562 0q22 0 39-13l157-125q33-28 19-69l-62-187q-10-29-39-39-10-4-20-4-18 0-31 8l0-383q0-25-19-44t-44-19l-562 0q-26 0-44 19t-19 44l0 383q-13-8-31-8-10 0-19 4-30 10-39 39z m59 20l62-187 94 62 0-500 562 0 0 500 94-62 63 187-157 125-131 0q-13-41-54-67t-96-27-96 27-54 67l-131 0z m320 125q14-27 45-45t72-18 72 18 45 45l-234 0z" horiz-adv-x="1000" />
|
||||
<glyph glyph-name="wallet" unicode="" d="m0 22l0 625q0 70 51 121t121 51l640 0q40 0 67-28t27-66l0-281q94-71 94-188t-94-187l0-47q0-70-51-121t-121-51l-562 0q-70 0-121 51t-51 121z m63 0q0-45 32-77t77-33l562 0q45 0 78 33t32 77l0 47-281 0q-65 0-111 46t-46 110 46 110 111 46l281 0 0 63q0 13-9 22t-23 9l-640 0q-63 0-109 39l0-492z m0 625q0-45 31-76l0 123q0 13 9 22t22 9l656 0q14 0 23-9t9-22l0-156q15 0 31-6l0 193q0 14-9 22t-23 9l-640 0q-45 0-77-32t-32-77z m62-98q23-11 47-11l609 0 0 31-656 0 0-20z m0 51l656 0 0 31-656 0 0-31z m0 62l656 0 0 32-656 0 0-32z m344-437q0-39 27-66t67-28l320 0q54 51 54 125 0 59-35 104l0-2q-4-8-7-14-20-25-51-25l-281 0q-40 0-67-28t-27-66z m31 0q0 25 19 44t44 19 43-19 19-44-19-44-43-18-44 18-19 44z" horiz-adv-x="1000" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 33 KiB |
Binary file not shown.
Binary file not shown.
BIN
src/assets/css/fonts/linecons/fonts/lineicons.eot
Normal file
BIN
src/assets/css/fonts/linecons/fonts/lineicons.eot
Normal file
Binary file not shown.
1803
src/assets/css/fonts/linecons/fonts/lineicons.svg
Normal file
1803
src/assets/css/fonts/linecons/fonts/lineicons.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 760 KiB |
BIN
src/assets/css/fonts/linecons/fonts/lineicons.ttf
Normal file
BIN
src/assets/css/fonts/linecons/fonts/lineicons.ttf
Normal file
Binary file not shown.
BIN
src/assets/css/fonts/linecons/fonts/lineicons.woff
Normal file
BIN
src/assets/css/fonts/linecons/fonts/lineicons.woff
Normal file
Binary file not shown.
BIN
src/assets/css/fonts/linecons/fonts/lineicons.woff2
Normal file
BIN
src/assets/css/fonts/linecons/fonts/lineicons.woff2
Normal file
Binary file not shown.
3070
src/assets/css/fonts/linecons/less/icons.less
Normal file
3070
src/assets/css/fonts/linecons/less/icons.less
Normal file
File diff suppressed because it is too large
Load Diff
2469
src/assets/css/fonts/linecons/lineicons.css
Normal file
2469
src/assets/css/fonts/linecons/lineicons.css
Normal file
File diff suppressed because it is too large
Load Diff
693
src/assets/css/fonts/linecons/scss/icons.scss
Normal file
693
src/assets/css/fonts/linecons/scss/icons.scss
Normal file
@ -0,0 +1,693 @@
|
||||
/*--------------------------------
|
||||
|
||||
Lineicons Free Web Font
|
||||
Crafted by Lineicons.com Team
|
||||
Version: 4.0
|
||||
|
||||
-------------------------------- */
|
||||
|
||||
$lni-font-path: "../fonts" !default;
|
||||
|
||||
@font-face {
|
||||
font-family: 'lineicons';
|
||||
src: url('#{$lni-font-path}/lineicons.eot');
|
||||
src: url('#{$lni-font-path}/lineicons.eot') format('embedded-opentype'),
|
||||
url('#{$lni-font-path}/lineicons.woff2') format('woff2'),
|
||||
url('#{$lni-font-path}/lineicons.woff') format('woff'),
|
||||
url('#{$lni-font-path}/lineicons.ttf') format('truetype'),
|
||||
url('#{$lni-font-path}/lineicons.svg') format('svg');
|
||||
}
|
||||
|
||||
/* base class */
|
||||
.lni {
|
||||
display: inline-block;
|
||||
font: normal normal normal 1em/1 'lineicons';
|
||||
color: inherit;
|
||||
flex-shrink: 0;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* size examples - relative units */
|
||||
.lni-sm {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.lni-lg {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
/* size examples - absolute units */
|
||||
.lni-16 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.lni-32 {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
/* rotate the icon infinitely */
|
||||
.lni-is-spinning {
|
||||
animation: lni-spin 1s infinite linear;
|
||||
}
|
||||
|
||||
@keyframes lni-spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/* transform */
|
||||
.lni-rotate-90 {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.lni-rotate-180 {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.lni-rotate-270 {
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.lni-flip-y {
|
||||
transform: scaleY(-1);
|
||||
}
|
||||
|
||||
.lni-flip-x {
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
|
||||
/* icons */
|
||||
$icons: (
|
||||
'zoom-out': 'ea02',
|
||||
'zoom-in': 'ea03',
|
||||
'zip': 'ea04',
|
||||
'website': 'ea05',
|
||||
'website-alt': 'ea06',
|
||||
'users': 'ea07',
|
||||
'user': 'ea08',
|
||||
'upload': 'ea09',
|
||||
'unlink': 'ea0a',
|
||||
'trash-can': 'ea0b',
|
||||
'timer': 'ea0c',
|
||||
'tab': 'ea0d',
|
||||
'star-half': 'ea0e',
|
||||
'star-fill': 'ea0f',
|
||||
'star-empty': 'ea10',
|
||||
'signal': 'ea11',
|
||||
'shortcode': 'ea12',
|
||||
'shopping-basket': 'ea13',
|
||||
'share': 'ea14',
|
||||
'share-alt': 'ea15',
|
||||
'search': 'ea16',
|
||||
'search-alt': 'ea17',
|
||||
'scroll-down': 'ea18',
|
||||
'save': 'ea19',
|
||||
'rss-feed': 'ea1a',
|
||||
'rocket': 'ea1b',
|
||||
'remove-file': 'ea1c',
|
||||
'reload': 'ea1d',
|
||||
'printer': 'ea1e',
|
||||
'plug': 'ea1f',
|
||||
'package': 'ea20',
|
||||
'mouse': 'ea21',
|
||||
'mobile': 'ea22',
|
||||
'microphone': 'ea23',
|
||||
'mic': 'ea24',
|
||||
'menu': 'ea25',
|
||||
'map': 'ea26',
|
||||
'map-marker': 'ea27',
|
||||
'magnifier': 'ea28',
|
||||
'magnet': 'ea29',
|
||||
'link': 'ea2a',
|
||||
'laptop': 'ea2b',
|
||||
'laptop-phone': 'ea2c',
|
||||
'keyboard': 'ea2d',
|
||||
'image': 'ea2e',
|
||||
'headphone': 'ea2f',
|
||||
'harddrive': 'ea30',
|
||||
'game': 'ea31',
|
||||
'folder': 'ea32',
|
||||
'files': 'ea33',
|
||||
'empty-file': 'ea34',
|
||||
'download': 'ea35',
|
||||
'domain': 'ea36',
|
||||
'display': 'ea37',
|
||||
'display-alt': 'ea38',
|
||||
'database': 'ea39',
|
||||
'dashboard': 'ea3a',
|
||||
'cut': 'ea3b',
|
||||
'control-panel': 'ea3c',
|
||||
'cogs': 'ea3d',
|
||||
'cog': 'ea3e',
|
||||
'code': 'ea3f',
|
||||
'code-alt': 'ea40',
|
||||
'cloud-upload': 'ea41',
|
||||
'cloud-sync': 'ea42',
|
||||
'cloud-network': 'ea43',
|
||||
'cloud-download': 'ea44',
|
||||
'cloud-check': 'ea45',
|
||||
'camera': 'ea46',
|
||||
'calendar': 'ea47',
|
||||
'bulb': 'ea48',
|
||||
'bookmark': 'ea49',
|
||||
'bookmark-alt': 'ea4a',
|
||||
'bluetooth': 'ea4b',
|
||||
'ban': 'ea4c',
|
||||
'archive': 'ea4d',
|
||||
'alarm': 'ea4e',
|
||||
'alarm-clock': 'ea4f',
|
||||
'add-files': 'ea50',
|
||||
'thunder': 'ea51',
|
||||
'thunder-alt': 'ea52',
|
||||
'sun': 'ea53',
|
||||
'rain': 'ea54',
|
||||
'night': 'ea55',
|
||||
'drop': 'ea56',
|
||||
'cloudy-sun': 'ea57',
|
||||
'cloud': 'ea58',
|
||||
'travel': 'ea59',
|
||||
'surf-board': 'ea5a',
|
||||
'pyramids': 'ea5b',
|
||||
'underline': 'ea5c',
|
||||
'text-format': 'ea5d',
|
||||
'text-format-remove': 'ea5e',
|
||||
'text-align-right': 'ea5f',
|
||||
'text-align-left': 'ea60',
|
||||
'text-align-justify': 'ea61',
|
||||
'text-align-center': 'ea62',
|
||||
'strikethrough': 'ea63',
|
||||
'spellcheck': 'ea64',
|
||||
'sort-amount-dsc': 'ea65',
|
||||
'sort-amount-asc': 'ea66',
|
||||
'sort-alpha-asc': 'ea67',
|
||||
'pilcrow': 'ea68',
|
||||
'pagination': 'ea69',
|
||||
'page-break': 'ea6a',
|
||||
'line-spacing': 'ea6b',
|
||||
'line-double': 'ea6c',
|
||||
'line-dotted': 'ea6d',
|
||||
'line-dashed': 'ea6e',
|
||||
'italic': 'ea6f',
|
||||
'indent-increase': 'ea70',
|
||||
'indent-decrease': 'ea71',
|
||||
'bold': 'ea72',
|
||||
'spinner': 'ea73',
|
||||
'spinner-solid': 'ea74',
|
||||
'spinner-arrow': 'ea75',
|
||||
'hourglass': 'ea76',
|
||||
'tounge': 'ea77',
|
||||
'suspect': 'ea78',
|
||||
'speechless': 'ea79',
|
||||
'smile': 'ea7a',
|
||||
'sad': 'ea7b',
|
||||
'happy': 'ea7c',
|
||||
'friendly': 'ea7d',
|
||||
'cool': 'ea7e',
|
||||
'thought': 'ea7f',
|
||||
't-shirt': 'ea80',
|
||||
'home': 'ea81',
|
||||
'gift': 'ea82',
|
||||
'cup': 'ea83',
|
||||
'crown': 'ea84',
|
||||
'briefcase': 'ea85',
|
||||
'spray': 'ea86',
|
||||
'flags-alt-1': 'ea87',
|
||||
'fireworks': 'ea88',
|
||||
'candy': 'ea89',
|
||||
'candy-cane': 'ea8a',
|
||||
'cake': 'ea8b',
|
||||
'baloon': 'ea8c',
|
||||
'trees': 'ea8d',
|
||||
'tree': 'ea8e',
|
||||
'sprout': 'ea8f',
|
||||
'mushroom': 'ea90',
|
||||
'mashroom': 'ea91',
|
||||
'leaf': 'ea92',
|
||||
'island': 'ea93',
|
||||
'flower': 'ea94',
|
||||
'bug': 'ea95',
|
||||
'volume': 'ea96',
|
||||
'volume-mute': 'ea97',
|
||||
'volume-medium': 'ea98',
|
||||
'volume-low': 'ea99',
|
||||
'volume-high': 'ea9a',
|
||||
'video': 'ea9b',
|
||||
'stop': 'ea9c',
|
||||
'shuffle': 'ea9d',
|
||||
'play': 'ea9e',
|
||||
'pause': 'ea9f',
|
||||
'gallery': 'eaa0',
|
||||
'full-screen': 'eaa1',
|
||||
'frame-expand': 'eaa2',
|
||||
'forward': 'eaa3',
|
||||
'backward': 'eaa4',
|
||||
'target-customer': 'eaa5',
|
||||
'seo': 'eaa6',
|
||||
'network': 'eaa7',
|
||||
'keyword-research': 'eaa8',
|
||||
'graph': 'eaa9',
|
||||
'bar-chart': 'eaaa',
|
||||
'warning': 'eaab',
|
||||
'unlock': 'eaac',
|
||||
'ticket': 'eaad',
|
||||
'ticket-alt': 'eaae',
|
||||
'thumbs-up': 'eaaf',
|
||||
'thumbs-down': 'eab0',
|
||||
'teabag': 'eab1',
|
||||
'shield': 'eab2',
|
||||
'radio-button': 'eab3',
|
||||
'question-circle': 'eab4',
|
||||
'protection': 'eab5',
|
||||
'power-switch': 'eab6',
|
||||
'pointer': 'eab7',
|
||||
'plus': 'eab8',
|
||||
'music': 'eab9',
|
||||
'more': 'eaba',
|
||||
'more-alt': 'eabb',
|
||||
'minus': 'eabc',
|
||||
'lock': 'eabd',
|
||||
'lock-alt': 'eabe',
|
||||
'list': 'eabf',
|
||||
'lifering': 'eac0',
|
||||
'key': 'eac1',
|
||||
'invention': 'eac2',
|
||||
'information': 'eac3',
|
||||
'infinite': 'eac4',
|
||||
'help': 'eac5',
|
||||
'heart': 'eac6',
|
||||
'heart-fill': 'eac7',
|
||||
'hand': 'eac8',
|
||||
'funnel': 'eac9',
|
||||
'flag': 'eaca',
|
||||
'flag-alt': 'eacb',
|
||||
'eye': 'eacc',
|
||||
'cross-circle': 'eacd',
|
||||
'close': 'eace',
|
||||
'circle-plus': 'eacf',
|
||||
'circle-minus': 'ead0',
|
||||
'checkmark': 'ead1',
|
||||
'checkmark-circle': 'ead2',
|
||||
'check-box': 'ead3',
|
||||
'bolt': 'ead4',
|
||||
'bolt-alt': 'ead5',
|
||||
'wheelchair': 'ead6',
|
||||
'weight': 'ead7',
|
||||
'syringe': 'ead8',
|
||||
'sthethoscope': 'ead9',
|
||||
'slim': 'eada',
|
||||
'skipping-rope': 'eadb',
|
||||
'pulse': 'eadc',
|
||||
'microscope': 'eadd',
|
||||
'hospital': 'eade',
|
||||
'heart-monitor': 'eadf',
|
||||
'first-aid': 'eae0',
|
||||
'dumbbell': 'eae1',
|
||||
'capsule': 'eae2',
|
||||
'basketball': 'eae3',
|
||||
'ambulance': 'eae4',
|
||||
'service': 'eae5',
|
||||
'restaurant': 'eae6',
|
||||
'pizza': 'eae7',
|
||||
'juice': 'eae8',
|
||||
'fresh-juice': 'eae9',
|
||||
'dinner': 'eaea',
|
||||
'coffee-cup': 'eaeb',
|
||||
'chef-hat': 'eaec',
|
||||
'burger': 'eaed',
|
||||
'write': 'eaee',
|
||||
'world': 'eaef',
|
||||
'world-alt': 'eaf0',
|
||||
'school-bench': 'eaf1',
|
||||
'school-bench-alt': 'eaf2',
|
||||
'pencil': 'eaf3',
|
||||
'pencil-alt': 'eaf4',
|
||||
'library': 'eaf5',
|
||||
'graduation': 'eaf6',
|
||||
'eraser': 'eaf7',
|
||||
'compass': 'eaf8',
|
||||
'clipboard': 'eaf9',
|
||||
'certificate': 'eafa',
|
||||
'book': 'eafb',
|
||||
'blackboard': 'eafc',
|
||||
'shift-right': 'eafd',
|
||||
'shift-left': 'eafe',
|
||||
'pointer-top': 'eaff',
|
||||
'pointer-right': 'eb00',
|
||||
'pointer-left': 'eb01',
|
||||
'pointer-down': 'eb02',
|
||||
'exit': 'eb03',
|
||||
'exit-up': 'eb04',
|
||||
'exit-down': 'eb05',
|
||||
'enter': 'eb06',
|
||||
'direction': 'eb07',
|
||||
'direction-rtl': 'eb08',
|
||||
'direction-ltr': 'eb09',
|
||||
'direction-alt': 'eb0a',
|
||||
'chevron-up': 'eb0b',
|
||||
'chevron-up-circle': 'eb0c',
|
||||
'chevron-right': 'eb0d',
|
||||
'chevron-right-circle': 'eb0e',
|
||||
'chevron-left': 'eb0f',
|
||||
'chevron-left-circle': 'eb10',
|
||||
'chevron-down': 'eb11',
|
||||
'chevron-down-circle': 'eb12',
|
||||
'arrows-vertical': 'eb13',
|
||||
'arrows-horizontal': 'eb14',
|
||||
'arrow-up': 'eb15',
|
||||
'arrow-up-circle': 'eb16',
|
||||
'arrow-top-right': 'eb17',
|
||||
'arrow-top-left': 'eb18',
|
||||
'arrow-right': 'eb19',
|
||||
'arrow-right-circle': 'eb1a',
|
||||
'arrow-left': 'eb1b',
|
||||
'arrow-left-circle': 'eb1c',
|
||||
'arrow-down': 'eb1d',
|
||||
'arrow-down-circle': 'eb1e',
|
||||
'angle-double-up': 'eb1f',
|
||||
'angle-double-right': 'eb20',
|
||||
'angle-double-left': 'eb21',
|
||||
'angle-double-down': 'eb22',
|
||||
'vector': 'eb23',
|
||||
'ux': 'eb24',
|
||||
'slice': 'eb25',
|
||||
'select-cursor': 'eb26',
|
||||
'pallet': 'eb27',
|
||||
'move': 'eb28',
|
||||
'layout': 'eb29',
|
||||
'layers': 'eb2a',
|
||||
'highlight': 'eb2b',
|
||||
'highlight-alt': 'eb2c',
|
||||
'grid': 'eb2d',
|
||||
'grid-alt': 'eb2e',
|
||||
'crop': 'eb2f',
|
||||
'brush': 'eb30',
|
||||
'brush-alt': 'eb31',
|
||||
'yen': 'eb32',
|
||||
'wallet': 'eb33',
|
||||
'rupee': 'eb34',
|
||||
'pound': 'eb35',
|
||||
'money-protection': 'eb36',
|
||||
'money-location': 'eb37',
|
||||
'euro': 'eb38',
|
||||
'dollar': 'eb39',
|
||||
'diamond-shape': 'eb3a',
|
||||
'diamond-alt': 'eb3b',
|
||||
'credit-cards': 'eb3c',
|
||||
'coin': 'eb3d',
|
||||
'calculator': 'eb3e',
|
||||
'calculator-alt': 'eb3f',
|
||||
'wheelbarrow': 'eb40',
|
||||
'trowel': 'eb41',
|
||||
'shovel': 'eb42',
|
||||
'ruler': 'eb43',
|
||||
'ruler-pencil': 'eb44',
|
||||
'ruler-alt': 'eb45',
|
||||
'paint-roller': 'eb46',
|
||||
'paint-bucket-alt': 'eb47',
|
||||
'helmet': 'eb48',
|
||||
'hammer': 'eb49',
|
||||
'construction': 'eb4a',
|
||||
'construction-hammer': 'eb4b',
|
||||
'bricks': 'eb4c',
|
||||
'train': 'eb4d',
|
||||
'train-alt': 'eb4e',
|
||||
'taxi': 'eb4f',
|
||||
'support': 'eb50',
|
||||
'ship': 'eb51',
|
||||
'scooter': 'eb52',
|
||||
'road': 'eb53',
|
||||
'reply': 'eb54',
|
||||
'postcard': 'eb55',
|
||||
'popup': 'eb56',
|
||||
'plane': 'eb57',
|
||||
'phone': 'eb58',
|
||||
'phone-set': 'eb59',
|
||||
'inbox': 'eb5a',
|
||||
'helicopter': 'eb5b',
|
||||
'envelope': 'eb5c',
|
||||
'comments': 'eb5d',
|
||||
'comments-reply': 'eb5e',
|
||||
'comments-alt-2': 'eb5f',
|
||||
'caravan': 'eb60',
|
||||
'car': 'eb61',
|
||||
'car-alt': 'eb62',
|
||||
'bus': 'eb63',
|
||||
'bullhorn': 'eb64',
|
||||
'bubble': 'eb65',
|
||||
'bridge': 'eb66',
|
||||
'bi-cycle': 'eb67',
|
||||
'anchor': 'eb68',
|
||||
'target': 'eb69',
|
||||
'target-revenue': 'eb6a',
|
||||
'tag': 'eb6b',
|
||||
'stats-up': 'eb6c',
|
||||
'stats-down': 'eb6d',
|
||||
'stamp': 'eb6e',
|
||||
'revenue': 'eb6f',
|
||||
'quotation': 'eb70',
|
||||
'pin': 'eb71',
|
||||
'pie-chart': 'eb72',
|
||||
'paperclip': 'eb73',
|
||||
'offer': 'eb74',
|
||||
'notepad': 'eb75',
|
||||
'license': 'eb76',
|
||||
'investment': 'eb77',
|
||||
'invest-monitor': 'eb78',
|
||||
'handshake': 'eb79',
|
||||
'grow': 'eb7a',
|
||||
'delivery': 'eb7b',
|
||||
'customer': 'eb7c',
|
||||
'consulting': 'eb7d',
|
||||
'cart': 'eb7e',
|
||||
'cart-full': 'eb7f',
|
||||
'briefcase-alt': 'eb80',
|
||||
'apartment': 'eb81',
|
||||
'agenda': 'eb82',
|
||||
'zoom': 'eb83',
|
||||
'zapier': 'eb84',
|
||||
'youtube': 'eb85',
|
||||
'ycombinator': 'eb86',
|
||||
'yahoo': 'eb87',
|
||||
'xrp': 'eb88',
|
||||
'xbox': 'eb89',
|
||||
'wordpress': 'eb8a',
|
||||
'wordpress-fill': 'eb8b',
|
||||
'windows': 'eb8c',
|
||||
'whatsapp': 'eb8d',
|
||||
'wechat': 'eb8e',
|
||||
'webhooks': 'eb8f',
|
||||
'vuejs': 'eb90',
|
||||
'vs-code': 'eb91',
|
||||
'volkswagen': 'eb92',
|
||||
'vmware': 'eb93',
|
||||
'vk': 'eb94',
|
||||
'visa': 'eb95',
|
||||
'vimeo': 'eb96',
|
||||
'vercel': 'eb97',
|
||||
'unsplash': 'eb98',
|
||||
'ubuntu': 'eb99',
|
||||
'typescript': 'eb9a',
|
||||
'twitter': 'eb9b',
|
||||
'twitter-original': 'eb9c',
|
||||
'twitter-fill': 'eb9d',
|
||||
'twitch': 'eb9e',
|
||||
'tumblr': 'eb9f',
|
||||
'trello': 'eba0',
|
||||
'toyota': 'eba1',
|
||||
'tiktok': 'eba2',
|
||||
'tiktok-alt': 'eba3',
|
||||
'tesla': 'eba4',
|
||||
'telegram': 'eba5',
|
||||
'telegram-original': 'eba6',
|
||||
'tailwindcss': 'eba7',
|
||||
'swift': 'eba8',
|
||||
'svelte': 'eba9',
|
||||
'stumbleupon': 'ebaa',
|
||||
'stripe': 'ebab',
|
||||
'steam': 'ebac',
|
||||
'stackoverflow': 'ebad',
|
||||
'squarespace': 'ebae',
|
||||
'spotify': 'ebaf',
|
||||
'spotify-original': 'ebb0',
|
||||
'soundcloud': 'ebb1',
|
||||
'soundcloud-original': 'ebb2',
|
||||
'snapchat': 'ebb3',
|
||||
'slideshare': 'ebb4',
|
||||
'slack': 'ebb5',
|
||||
'slack-line': 'ebb6',
|
||||
'skype': 'ebb7',
|
||||
'sketch': 'ebb8',
|
||||
'signal-app': 'ebb9',
|
||||
'shopify': 'ebba',
|
||||
'safari': 'ebbb',
|
||||
'reddit': 'ebbc',
|
||||
'react': 'ebbd',
|
||||
'quora': 'ebbe',
|
||||
'python': 'ebbf',
|
||||
'producthunt': 'ebc0',
|
||||
'postman': 'ebc1',
|
||||
'postgresql': 'ebc2',
|
||||
'playstation': 'ebc3',
|
||||
'play-store': 'ebc4',
|
||||
'play-store-fill': 'ebc5',
|
||||
'play-store-alt': 'ebc6',
|
||||
'pinterest': 'ebc7',
|
||||
'php': 'ebc8',
|
||||
'paypal': 'ebc9',
|
||||
'paypal-original': 'ebca',
|
||||
'patreon': 'ebcb',
|
||||
'paddle': 'ebcc',
|
||||
'opera': 'ebcd',
|
||||
'oculus': 'ebce',
|
||||
'npm': 'ebcf',
|
||||
'notion': 'ebd0',
|
||||
'nodejs': 'ebd1',
|
||||
'nodejs-alt': 'ebd2',
|
||||
'nissan': 'ebd3',
|
||||
'nextjs': 'ebd4',
|
||||
'netlify': 'ebd5',
|
||||
'netflix': 'ebd6',
|
||||
'mysql': 'ebd7',
|
||||
'mongodb': 'ebd8',
|
||||
'microsoft': 'ebd9',
|
||||
'microsoft-teams': 'ebda',
|
||||
'microsoft-edge': 'ebdb',
|
||||
'meta': 'ebdc',
|
||||
'meta-2': 'ebdd',
|
||||
'meta-1': 'ebde',
|
||||
'mercedes': 'ebdf',
|
||||
'medium': 'ebe0',
|
||||
'medium-alt': 'ebe1',
|
||||
'mastercard': 'ebe2',
|
||||
'markdown': 'ebe3',
|
||||
'mailchimp': 'ebe4',
|
||||
'magento': 'ebe5',
|
||||
'linkedin': 'ebe6',
|
||||
'linkedin-original': 'ebe7',
|
||||
'lineicons': 'ebe8',
|
||||
'lineicons-symbol': 'ebe9',
|
||||
'lineicons-symbol-alt': 'ebea',
|
||||
'lineicons-symbol-alt-2': 'ebeb',
|
||||
'lineicons-alt': 'ebec',
|
||||
'line': 'ebed',
|
||||
'laravel': 'ebee',
|
||||
'kubernetes': 'ebef',
|
||||
'jsfiddle': 'ebf0',
|
||||
'joomla': 'ebf1',
|
||||
'joomla-original': 'ebf2',
|
||||
'jcb': 'ebf3',
|
||||
'javascript': 'ebf4',
|
||||
'java': 'ebf5',
|
||||
'jamstack': 'ebf6',
|
||||
'jaguar': 'ebf7',
|
||||
'ios': 'ebf8',
|
||||
'instagram': 'ebf9',
|
||||
'instagram-original': 'ebfa',
|
||||
'instagram-fill': 'ebfb',
|
||||
'imdb': 'ebfc',
|
||||
'html5': 'ebfd',
|
||||
'hacker-news': 'ebfe',
|
||||
'grammarly': 'ebff',
|
||||
'google': 'ec00',
|
||||
'google-wallet': 'ec01',
|
||||
'google-pay': 'ec02',
|
||||
'google-drive': 'ec03',
|
||||
'google-cloud': 'ec04',
|
||||
'google-meet': 'ec05',
|
||||
'goodreads': 'ec06',
|
||||
'go': 'ec07',
|
||||
'github': 'ec08',
|
||||
'github-original': 'ec09',
|
||||
'git': 'ec0a',
|
||||
'gatsby': 'ec0b',
|
||||
'ford': 'ec0c',
|
||||
'flutter': 'ec0d',
|
||||
'flickr': 'ec0e',
|
||||
'fitbit': 'ec0f',
|
||||
'firefox': 'ec10',
|
||||
'firefox-original': 'ec11',
|
||||
'firebase': 'ec12',
|
||||
'figma': 'ec13',
|
||||
'facetime': 'ec14',
|
||||
'facebook': 'ec15',
|
||||
'facebook-oval': 'ec16',
|
||||
'facebook-original': 'ec17',
|
||||
'facebook-messenger': 'ec18',
|
||||
'facebook-line': 'ec19',
|
||||
'facebook-fill': 'ec1a',
|
||||
'ethereum': 'ec1b',
|
||||
'envato': 'ec1c',
|
||||
'edge': 'ec1d',
|
||||
'drupal': 'ec1e',
|
||||
'drupal-original': 'ec1f',
|
||||
'dropbox': 'ec20',
|
||||
'dropbox-original': 'ec21',
|
||||
'dribbble': 'ec22',
|
||||
'docker': 'ec23',
|
||||
'discover': 'ec24',
|
||||
'discord': 'ec25',
|
||||
'discord-alt': 'ec26',
|
||||
'diners-club': 'ec27',
|
||||
'digitalocean': 'ec28',
|
||||
'dialogflow': 'ec29',
|
||||
'dev': 'ec2a',
|
||||
'css3': 'ec2b',
|
||||
'creative-commons': 'ec2c',
|
||||
'cpanel': 'ec2d',
|
||||
'coral': 'ec2e',
|
||||
'connectdevelop': 'ec2f',
|
||||
'coinbase': 'ec30',
|
||||
'codepen': 'ec31',
|
||||
'cloudflare': 'ec32',
|
||||
'cisco': 'ec33',
|
||||
'chromecast': 'ec34',
|
||||
'chrome': 'ec35',
|
||||
'cash-app': 'ec36',
|
||||
'btc': 'ec37',
|
||||
'brave': 'ec38',
|
||||
'bootstrap': 'ec39',
|
||||
'bootstrap-5': 'ec3a',
|
||||
'bmw': 'ec3b',
|
||||
'bluetooth-original': 'ec3c',
|
||||
'blogger': 'ec3d',
|
||||
'bittorrent': 'ec3e',
|
||||
'bitcoin': 'ec3f',
|
||||
'bitbucket': 'ec40',
|
||||
'behance': 'ec41',
|
||||
'behance-original': 'ec42',
|
||||
'azure': 'ec43',
|
||||
'aws': 'ec44',
|
||||
'audi': 'ec45',
|
||||
'atlassian': 'ec46',
|
||||
'apple-pay': 'ec47',
|
||||
'apple-music': 'ec48',
|
||||
'apple-brand': 'ec49',
|
||||
'app-store': 'ec4a',
|
||||
'angular': 'ec4b',
|
||||
'angellist': 'ec4c',
|
||||
'android': 'ec4d',
|
||||
'android-original': 'ec4e',
|
||||
'amex': 'ec4f',
|
||||
'amazon': 'ec50',
|
||||
'amazon-pay': 'ec51',
|
||||
'amazon-original': 'ec52',
|
||||
'airtable': 'ec53',
|
||||
'airbnb': 'ec54',
|
||||
'adobe': 'ec55',
|
||||
'500px': 'ec56',
|
||||
);
|
||||
|
||||
@function unicode($str) {
|
||||
@return unquote("\"\\#{$str}\"");
|
||||
}
|
||||
|
||||
@each $name, $code in $icons {
|
||||
.lni-#{""+$name}::before {
|
||||
content: unicode($code);
|
||||
}
|
||||
}
|
1
src/assets/css/fonts/linecons/unicodesMap.json
Normal file
1
src/assets/css/fonts/linecons/unicodesMap.json
Normal file
File diff suppressed because one or more lines are too long
@ -2,7 +2,7 @@
|
||||
{
|
||||
"name": "常用推荐",
|
||||
"en_name": "Recommended",
|
||||
"icon": "linecons-star",
|
||||
"icon": "lni lni-star-fill",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://dribbble.com/",
|
||||
@ -72,10 +72,210 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name":"码农专区",
|
||||
"en_name": "ProgrammerArea",
|
||||
"icon": "lni lni-code",
|
||||
"children": [
|
||||
{
|
||||
"name": "AI智能",
|
||||
"en_name": "CodeHosting",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://tongyi.aliyun.com/",
|
||||
"logo": "https://img.alicdn.com/imgextra/i1/O1CN01asLYeX1WhbsyEZn5u_!!6000000002820-55-tps-56-56.svg",
|
||||
"title": "通义千问",
|
||||
"desc": "阿里云"
|
||||
},
|
||||
{
|
||||
"url": "https://www.doubao.com//",
|
||||
"logo": "https://lf-flow-web-cdn.doubao.com/obj/flow-doubao/doubao/logo-doubao-overflow.png",
|
||||
"title": "豆包",
|
||||
"desc": "字节跳动"
|
||||
},
|
||||
{
|
||||
"url": "https://kimi.moonshot.cn/",
|
||||
"logo": "https://statics.moonshot.cn/kimi-chat/favicon.ico",
|
||||
"title": "Kimi",
|
||||
"desc": "北京月之暗面科技有限公司"
|
||||
},
|
||||
{
|
||||
"url": "https://chatgpt.com/",
|
||||
"logo": "https://cdn.oaistatic.com/assets/apple-touch-icon-mz9nytnj.webp",
|
||||
"title": "ChatGPT",
|
||||
"desc": "OpenAI"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "代码托管",
|
||||
"en_name": "CodeHosting",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://svnet.cn/",
|
||||
"logo": "https://svnet.cn/assets/img/logo.svg",
|
||||
"title": "四维网",
|
||||
"desc": "一款极易搭建的自助 Git 服务"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/",
|
||||
"logo": "https://github.com/apple-touch-icon.png",
|
||||
"title": "Github",
|
||||
"desc": "全球最大同性交友网站 你懂的~。"
|
||||
},
|
||||
{
|
||||
"url": "https://gitee.com/",
|
||||
"logo": "https://gitee.com/favicon.ico",
|
||||
"title": "码云",
|
||||
"desc": "基于 Git 的代码托管和研发协作平台。"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "云服务器",
|
||||
"en_name": "Product",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://www.aliyun.com/minisite/goods?userCode=h80cjmdm",
|
||||
"logo": "https://img.alicdn.com/tfs/TB1_ZXuNcfpK1RjSZFOXXa6nFXa-32-32.ico",
|
||||
"title": "阿里云",
|
||||
"desc": "阿里云——提供免费试用、云服务器、云数据库、云安全、云企业应用等云计算服务,以及大数据、人工智能服务、精准定制基于场景的行业解决方案。"
|
||||
},
|
||||
{
|
||||
"url": "https://curl.qcloud.com/m3XcVdvY",
|
||||
"logo": "https://cloud.tencent.com/favicon.ico",
|
||||
"title": "腾讯云",
|
||||
"desc": "腾讯云为数百万的企业和开发者提供安全稳定的云计算服务,涵盖云服务器、云数据库、云存储、视频与CDN、域名注册等全方位云服务和各行业解决方案。"
|
||||
},
|
||||
{
|
||||
"url": "https://s.qiniu.com/qYzuQf",
|
||||
"logo": "https://static.qiniu.com/favicon.ico",
|
||||
"title": "七牛云",
|
||||
"desc": "七牛云致力于成为全球领先的一站式场景化智能视频云服务商,围绕数字化浪潮下的在线音视频需求,基于强大的云边一体化能力和低代码能力,持续在视频点播、互动直播、实时音视频、摄像头上云等领域,进行深度技术投入,提供面向业务场景的视频云解决方案"
|
||||
},
|
||||
{
|
||||
"url": "https://www.nazhumi.com/",
|
||||
"logo": "https://www.nazhumi.com/favicon.ico",
|
||||
"title": "哪煮米",
|
||||
"desc": "哪煮米是一个域名比价网站,帮助您找到合适的域名后缀和域名注册商。"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "开源镜像",
|
||||
"en_name": "Product",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://developer.aliyun.com/mirror/",
|
||||
"logo": "https://developer.aliyun.com/favicon.ico",
|
||||
"title": "阿里巴巴开源镜像站",
|
||||
"desc": "提供极速全面稳定的系统镜像服务"
|
||||
},
|
||||
{
|
||||
"url": "https://mirrors.163.com/",
|
||||
"logo": "https://developer.aliyun.com/favicon.ico",
|
||||
"title": "网易开源镜像站",
|
||||
"desc": "网易提供的镜像站"
|
||||
},
|
||||
{
|
||||
"url": "https://mirrors.cloud.tencent.com/",
|
||||
"logo": "https://cloudcache.tencent-cloud.com/qcloud/favicon.ico?t=201902181234",
|
||||
"title": "腾讯软件源",
|
||||
"desc": "腾讯云提供的镜像站"
|
||||
},
|
||||
{
|
||||
"url": "https://mirrors.huaweicloud.com/home",
|
||||
"logo": "https://devcloud-res.hc-cdn.com/MirrorPortal-CDN/10.49.1/hws/favicon.ico",
|
||||
"title": "华为云开源镜像站",
|
||||
"desc": "提供主流开发语言组件、操作系统、常用工具和库等镜像"
|
||||
},
|
||||
{
|
||||
"url": "https://mirrors.ustc.edu.cn",
|
||||
"logo": "https://mirrors.ustc.edu.cn/static/img/favicon.png",
|
||||
"title": "中国科学技术大学镜像站",
|
||||
"desc": "提供各大主流 Linux 发行版的安装镜像"
|
||||
},
|
||||
{
|
||||
"url": "https://mirrors.tuna.tsinghua.edu.cn/",
|
||||
"logo": "https://mirrors.tuna.tsinghua.edu.cn/static/img/favicon.png",
|
||||
"title": "清华大学开源软件镜像站",
|
||||
"desc": "致力于为国内和校内用户提供高质量的开源软件镜像、Linux 镜像源服务"
|
||||
},
|
||||
{
|
||||
"url": "https://mirror.bjtu.edu.cn/",
|
||||
"logo": "https://mirror.bjtu.edu.cn/favicon.ico",
|
||||
"title": "北京交通大学镜像站",
|
||||
"desc": "北京交通大学自由与开源软件镜像站"
|
||||
},
|
||||
{
|
||||
"url": "https://mirrors.zju.edu.cn/",
|
||||
"logo": "https://mirrors.zju.edu.cn/index/icons/icon-512x512.png?v=f28569028f33e6ac676201f84c9d61bf",
|
||||
"title": "浙江大学开源软件镜像站",
|
||||
"desc": "浙江大学开源软件镜像站"
|
||||
},
|
||||
|
||||
{
|
||||
"url": "https://mirror.lzu.edu.cn",
|
||||
"logo": "https://mirror.lzu.edu.cn/assets/img/favicon.ico",
|
||||
"title": "兰州大学开源社区镜像站",
|
||||
"desc": "兰州大学开源社区镜像站"
|
||||
},
|
||||
{
|
||||
"url": "https://developer.aliyun.com/mvn/guide",
|
||||
"logo": "https://developer.aliyun.com/favicon.ico",
|
||||
"title": "阿里云云效 Maven",
|
||||
"desc": "阿里云云效 Maven"
|
||||
},
|
||||
{
|
||||
"url": "https://mirror.ghproxy.com/",
|
||||
"logo": "https://help.kgithub.com/imgs/favicon.png",
|
||||
"title": "GitHub Proxy 代理加速",
|
||||
"desc": "GitHub 文件 , Releases , archive , gist , raw.githubusercontent.com 文件代理加速下载服务."
|
||||
},
|
||||
{
|
||||
"url": "https://help.kgithub.com/",
|
||||
"logo": "https://help.kgithub.com/imgs/favicon.png",
|
||||
"title": "KGitHub Help",
|
||||
"desc": "查看代码仅需在github.com前加上'k'即可"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "微服务框架",
|
||||
"en_name": "Product",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://go-zero.dev/",
|
||||
"logo": "https://go-zero.dev/img/meta/favicon.ico",
|
||||
"title": "go-zero",
|
||||
"desc": "go-zero 是一个集成了各种工程实践的 web 和 rpc 框架。通过弹性设计保障了大并发服务端的稳定性,经受了充分的实战检验。"
|
||||
},
|
||||
{
|
||||
"url": "https://go-kratos.dev/",
|
||||
"logo": "https://go-kratos.dev/img/favicon.ico",
|
||||
"title": "Kratos",
|
||||
"desc": "Kratos 是 bilibili 开源的一套轻量级 Go 微服务框架,包含大量微服务相关功能及工具。"
|
||||
},
|
||||
{
|
||||
"url": "https://spring.io/",
|
||||
"logo": "https://spring.io/icons/icon-192x192.png?v=96334d577af708644f6f0495dd1c7bc8",
|
||||
"title": "Spring",
|
||||
"desc": "Spring 使每个人都可以更快、更轻松、更安全地进行 Java 编程。Spring 对速度、简单性和生产力的关注使其成为 世界上最受欢迎的 Java框架。"
|
||||
},
|
||||
{
|
||||
"url": "https://sca.aliyun.com/zh-cn/",
|
||||
"logo": "https://spring.io/icons/icon-192x192.png?v=96334d577af708644f6f0495dd1c7bc8",
|
||||
"title": "Spring Cloud Alibaba",
|
||||
"desc": "Spring Cloud Alibaba 为分布式应用开发提供一站式解决方案。它包含开发分布式应用程序所需的所有组件,使您可以轻松地使用 Spring Cloud 微服务框架开发应用程序。"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "社区资讯",
|
||||
"en_name": "Information",
|
||||
"icon": "linecons-doc",
|
||||
"icon": "lni lni-world",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://www.leiphone.com/",
|
||||
@ -96,7 +296,7 @@
|
||||
"desc": "数字媒体及职业招聘网站"
|
||||
},
|
||||
{
|
||||
"url": "http://www.lieyunwang.com/",
|
||||
"url": "https://lieyunpro.com/",
|
||||
"logo": "assets/images/logos/lieyunwang.png",
|
||||
"title": "猎云网",
|
||||
"desc": "互联网创业项目推荐和创业创新资讯"
|
||||
@ -154,7 +354,7 @@
|
||||
{
|
||||
"name": "灵感采集",
|
||||
"en_name": "Inspiration",
|
||||
"icon": "linecons-lightbulb",
|
||||
"icon": "lni lni-bulb",
|
||||
"children": [
|
||||
{
|
||||
"name": "发现产品",
|
||||
@ -324,7 +524,7 @@
|
||||
{
|
||||
"name": "素材资源",
|
||||
"en_name": "Resources",
|
||||
"icon": "linecons-thumbs-up",
|
||||
"icon": "lni lni-leaf",
|
||||
"children": [
|
||||
{
|
||||
"name": "图标素材",
|
||||
@ -997,7 +1197,7 @@
|
||||
{
|
||||
"name": "常用工具",
|
||||
"en_name": "Design Tools",
|
||||
"icon": "linecons-diamond",
|
||||
"icon": "lni lni-diamond-alt",
|
||||
"children": [
|
||||
{
|
||||
"name": "图形创意",
|
||||
@ -1316,7 +1516,7 @@
|
||||
{
|
||||
"name": "学习教程",
|
||||
"en_name": "Tutorial",
|
||||
"icon": "linecons-pencil",
|
||||
"icon": "lni lni-graduation",
|
||||
"children": [
|
||||
{
|
||||
"name": "设计规范",
|
||||
@ -1480,7 +1680,7 @@
|
||||
{
|
||||
"name": "UED团队",
|
||||
"en_name": "UED Team",
|
||||
"icon": "linecons-user",
|
||||
"icon": "lni lni-user",
|
||||
"web": [
|
||||
{
|
||||
"url": "https://airbnb.design",
|
||||
|
@ -3,13 +3,13 @@
|
||||
<div class="footer-inner">
|
||||
<!-- 版权信息 -->
|
||||
<div class="footer-text">
|
||||
© 2017-2019
|
||||
© 2024-{{ new Date().getFullYear() }}
|
||||
<a href="#"><strong>WebStack</strong></a>
|
||||
design by <a href="http://viggoz.com" target="_blank"><strong>Viggo</strong></a>
|
||||
design by <a href="https://devttl.cn" target="_blank"><strong>开发生存时间</strong></a>
|
||||
</div>
|
||||
|
||||
<div class="go-up">
|
||||
<a href="#" rel="go-top"><i class="fa-angle-up"></i></a>
|
||||
<a href="https://beian.miit.gov.cn/" target="_blank">豫ICP备14008887号-2</a> | <a href="#" rel="go-top"><i class="fa-angle-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<h4 class="text-gray">
|
||||
<i class="linecons-tag" :id="transName(item)"></i>{{transName(item)}}
|
||||
<i class="lni lni-tag" :id="transName(item)"></i>{{transName(item)}}
|
||||
</h4>
|
||||
<div class="row">
|
||||
<div class="col-sm-3" v-for="(web, idx) in item.web" :key="idx">
|
||||
@ -10,7 +10,6 @@
|
||||
data-toggle="tooltip"
|
||||
data-placement="bottom"
|
||||
:data-original-title="web.url">
|
||||
|
||||
<div class="xe-comment-entry">
|
||||
<a class="xe-user-img">
|
||||
<img :src="web.logo" class="lozad img-circle" width="40">
|
||||
|
@ -4,7 +4,7 @@ import App from './App.vue'
|
||||
import Index from './views/index.vue'
|
||||
import About from './views/about.vue'
|
||||
|
||||
import './assets/css/fonts/linecons/css/linecons.css'
|
||||
import './assets/css/fonts/linecons/css/icons.css'
|
||||
import './assets/css/fonts/fontawesome/css/font-awesome.min.css'
|
||||
import './assets/css/bootstrap.css'
|
||||
import './assets/css/xenon-core.css'
|
||||
|
@ -11,7 +11,7 @@
|
||||
<div class="navbar-mobile-clear"></div>
|
||||
<a href="https://github.com/Anjaxs/WebStack-vue" target="_blank">
|
||||
<img style="position: absolute; top: 0; right: 0; border: 0;"
|
||||
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
|
||||
src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149"
|
||||
alt="Fork me on GitHub">
|
||||
</a>
|
||||
</div>
|
||||
|
@ -48,7 +48,7 @@
|
||||
<!-- 关于本站 -->
|
||||
<li class="submit-tag">
|
||||
<router-link to="/about">
|
||||
<i class="linecons-heart"></i>
|
||||
<i class="lni lni-heart"></i>
|
||||
<span class="tooltip-blue">关于本站</span>
|
||||
<span class="label label-Primary pull-right hidden-collapsed"
|
||||
>♥︎</span
|
||||
@ -84,8 +84,8 @@
|
||||
</ul>
|
||||
<ul class="user-info-menu right-links list-inline list-unstyled">
|
||||
<li class="hidden-sm hidden-xs">
|
||||
<a href="https://github.com/Anjaxs/WebStack-vue" target="_blank">
|
||||
<i class="fa-github"></i> GitHub
|
||||
<a href="https://svnet.cn/devttl/WebStack-vue" target="_blank">
|
||||
<i class="fa-github"></i> Git
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user