333
This commit is contained in:
370
MyCode.Project.WebApi/pages/static/lightblue/fonts/demo.css
Normal file
370
MyCode.Project.WebApi/pages/static/lightblue/fonts/demo.css
Normal file
@@ -0,0 +1,370 @@
|
||||
*{margin: 0;padding: 0;list-style: none;}
|
||||
/*
|
||||
KISSY CSS Reset
|
||||
理念:1. reset 的目的不是清除浏览器的默认样式,这仅是部分工作。清除和重置是紧密不可分的。
|
||||
2. reset 的目的不是让默认样式在所有浏览器下一致,而是减少默认样式有可能带来的问题。
|
||||
3. reset 期望提供一套普适通用的基础样式。但没有银弹,推荐根据具体需求,裁剪和修改后再使用。
|
||||
特色:1. 适应中文;2. 基于最新主流浏览器。
|
||||
维护:玉伯<lifesinger@gmail.com>, 正淳<ragecarrier@gmail.com>
|
||||
*/
|
||||
|
||||
/** 清除内外边距 **/
|
||||
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
|
||||
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
|
||||
pre, /* text formatting elements 文本格式元素 */
|
||||
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
|
||||
th, td /* table elements 表格元素 */ {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/** 设置默认字体 **/
|
||||
body,
|
||||
button, input, select, textarea /* for ie */ {
|
||||
font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
|
||||
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
|
||||
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
|
||||
small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */
|
||||
|
||||
/** 重置列表元素 **/
|
||||
ul, ol { list-style: none; }
|
||||
|
||||
/** 重置文本格式元素 **/
|
||||
a { text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
|
||||
|
||||
/** 重置表单元素 **/
|
||||
legend { color: #000; } /* for ie6 */
|
||||
fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */
|
||||
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
|
||||
/* 注:optgroup 无法扶正 */
|
||||
|
||||
/** 重置表格元素 **/
|
||||
table { border-collapse: collapse; border-spacing: 0; }
|
||||
|
||||
/* 清除浮动 */
|
||||
.ks-clear:after, .clear:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
}
|
||||
.ks-clear, .clear {
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
.main {
|
||||
padding: 30px 100px;
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.main h1{font-size:36px; color:#333; text-align:left;margin-bottom:30px; border-bottom: 1px solid #eee;}
|
||||
|
||||
.helps{margin-top:40px;}
|
||||
.helps pre{
|
||||
padding:20px;
|
||||
margin:10px 0;
|
||||
border:solid 1px #e7e1cd;
|
||||
background-color: #fffdef;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.icon_lists{
|
||||
width: 100% !important;
|
||||
|
||||
}
|
||||
|
||||
.icon_lists li{
|
||||
float:left;
|
||||
width: 100px;
|
||||
height:180px;
|
||||
text-align: center;
|
||||
list-style: none !important;
|
||||
}
|
||||
.icon_lists .icon{
|
||||
font-size: 42px;
|
||||
line-height: 100px;
|
||||
margin: 10px 0;
|
||||
color:#333;
|
||||
-webkit-transition: font-size 0.25s ease-out 0s;
|
||||
-moz-transition: font-size 0.25s ease-out 0s;
|
||||
transition: font-size 0.25s ease-out 0s;
|
||||
|
||||
}
|
||||
.icon_lists .icon:hover{
|
||||
font-size: 100px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.markdown {
|
||||
color: #666;
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.markdown img {
|
||||
vertical-align: middle;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.markdown h1 {
|
||||
color: #404040;
|
||||
font-weight: 500;
|
||||
line-height: 40px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.markdown h2,
|
||||
.markdown h3,
|
||||
.markdown h4,
|
||||
.markdown h5,
|
||||
.markdown h6 {
|
||||
color: #404040;
|
||||
margin: 1.6em 0 0.6em 0;
|
||||
font-weight: 500;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.markdown h1 {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.markdown h2 {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.markdown h3 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.markdown h4 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.markdown h5 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.markdown h6 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.markdown hr {
|
||||
height: 1px;
|
||||
border: 0;
|
||||
background: #e9e9e9;
|
||||
margin: 16px 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.markdown p,
|
||||
.markdown pre {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.markdown > p,
|
||||
.markdown > blockquote,
|
||||
.markdown > .highlight,
|
||||
.markdown > ol,
|
||||
.markdown > ul {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.markdown ul > li {
|
||||
list-style: circle;
|
||||
}
|
||||
|
||||
.markdown > ul li,
|
||||
.markdown blockquote ul > li {
|
||||
margin-left: 20px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.markdown > ul li p,
|
||||
.markdown > ol li p {
|
||||
margin: 0.6em 0;
|
||||
}
|
||||
|
||||
.markdown ol > li {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
.markdown > ol li,
|
||||
.markdown blockquote ol > li {
|
||||
margin-left: 20px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.markdown code {
|
||||
margin: 0 3px;
|
||||
padding: 0 5px;
|
||||
background: #eee;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.markdown pre {
|
||||
border-radius: 6px;
|
||||
background: #f7f7f7;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.markdown pre code {
|
||||
border: none;
|
||||
background: #f7f7f7;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.markdown strong,
|
||||
.markdown b {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.markdown > table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
empty-cells: show;
|
||||
border: 1px solid #e9e9e9;
|
||||
width: 95%;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.markdown > table th {
|
||||
white-space: nowrap;
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
|
||||
}
|
||||
|
||||
.markdown > table th,
|
||||
.markdown > table td {
|
||||
border: 1px solid #e9e9e9;
|
||||
padding: 8px 16px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.markdown > table th {
|
||||
background: #F7F7F7;
|
||||
}
|
||||
|
||||
.markdown blockquote {
|
||||
font-size: 90%;
|
||||
color: #999;
|
||||
border-left: 4px solid #e9e9e9;
|
||||
padding-left: 0.8em;
|
||||
margin: 1em 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.markdown blockquote p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.markdown .anchor {
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.markdown .waiting {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.markdown h1:hover .anchor,
|
||||
.markdown h2:hover .anchor,
|
||||
.markdown h3:hover .anchor,
|
||||
.markdown h4:hover .anchor,
|
||||
.markdown h5:hover .anchor,
|
||||
.markdown h6:hover .anchor {
|
||||
opacity: 1;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.markdown > br,
|
||||
.markdown > p > br {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: white;
|
||||
padding: 0.5em;
|
||||
color: #333333;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-meta {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-strong,
|
||||
.hljs-emphasis,
|
||||
.hljs-quote {
|
||||
color: #df5000;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag,
|
||||
.hljs-type {
|
||||
color: #a71d5d;
|
||||
}
|
||||
|
||||
.hljs-literal,
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-attribute {
|
||||
color: #0086b3;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name {
|
||||
color: #63a35c;
|
||||
}
|
||||
|
||||
.hljs-tag {
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.hljs-title,
|
||||
.hljs-attr,
|
||||
.hljs-selector-id,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo {
|
||||
color: #795da3;
|
||||
}
|
||||
|
||||
.hljs-addition {
|
||||
color: #55a532;
|
||||
background-color: #eaffea;
|
||||
}
|
||||
|
||||
.hljs-deletion {
|
||||
color: #bd2c00;
|
||||
background-color: #ffecec;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
pre{
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
2183
MyCode.Project.WebApi/pages/static/lightblue/fonts/demo_symbol.html
Normal file
2183
MyCode.Project.WebApi/pages/static/lightblue/fonts/demo_symbol.html
Normal file
File diff suppressed because it is too large
Load Diff
1668
MyCode.Project.WebApi/pages/static/lightblue/fonts/demo_unicode.html
Normal file
1668
MyCode.Project.WebApi/pages/static/lightblue/fonts/demo_unicode.html
Normal file
File diff suppressed because it is too large
Load Diff
547
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.css
Normal file
547
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.css
Normal file
@@ -0,0 +1,547 @@
|
||||
|
||||
@font-face {font-family: "iconfont";
|
||||
src: url('iconfont.eot?t=1491007314492'); /* IE9*/
|
||||
src: url('iconfont.eot?t=1491007314492#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('iconfont.woff?t=1491007314492') format('woff'), /* chrome, firefox */
|
||||
url('iconfont.ttf?t=1491007314492') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
|
||||
url('iconfont.svg?t=1491007314492#iconfont') format('svg'); /* iOS 4.1- */
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family:"iconfont" !important;
|
||||
font-size:16px;
|
||||
font-style:normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-quanbudingdan:before { content: "\e6b7"; }
|
||||
|
||||
.icon-pdf:before { content: "\e684"; }
|
||||
|
||||
.icon-title-left:before { content: "\e608"; }
|
||||
|
||||
.icon-book:before { content: "\e69a"; }
|
||||
|
||||
.icon-yuanquan:before { content: "\e691"; }
|
||||
|
||||
.icon-shujuku:before { content: "\e6bc"; }
|
||||
|
||||
.icon-youxiang:before { content: "\e6bd"; }
|
||||
|
||||
.icon-weiwancheng:before { content: "\e69b"; }
|
||||
|
||||
.icon-del:before { content: "\e660"; }
|
||||
|
||||
.icon-fabu:before { content: "\e630"; }
|
||||
|
||||
.icon-xia:before { content: "\e68c"; }
|
||||
|
||||
.icon-ttpodicon:before { content: "\e700"; }
|
||||
|
||||
.icon-22:before { content: "\e61d"; }
|
||||
|
||||
.icon-information:before { content: "\e6fe"; }
|
||||
|
||||
.icon-huanyihuan:before { content: "\e69c"; }
|
||||
|
||||
.icon-lingdang:before { content: "\e61c"; }
|
||||
|
||||
.icon-wenjianjia3:before { content: "\e60a"; }
|
||||
|
||||
.icon-xinzengrenwu:before { content: "\e701"; }
|
||||
|
||||
.icon-gongyingshangguanli:before { content: "\e6b3"; }
|
||||
|
||||
.icon-shoucanggongyingshang:before { content: "\e6b4"; }
|
||||
|
||||
.icon-xinzenggongyingshang:before { content: "\e6b5"; }
|
||||
|
||||
.icon-icon:before { content: "\e6b6"; }
|
||||
|
||||
.icon-xiazai:before { content: "\e670"; }
|
||||
|
||||
.icon-yanzhengma:before { content: "\e633"; }
|
||||
|
||||
.icon-wuliaoguanli:before { content: "\e6e1"; }
|
||||
|
||||
.icon-gangchang2:before { content: "\e6ea"; }
|
||||
|
||||
.icon-buxiugang4:before { content: "\e6e2"; }
|
||||
|
||||
.icon-55yewushenqingguidang:before { content: "\e6bf"; }
|
||||
|
||||
.icon-56gongwenshenqingguidang:before { content: "\e6c0"; }
|
||||
|
||||
.icon-57qitashenqingguidang:before { content: "\e6c1"; }
|
||||
|
||||
.icon-redooutline:before { content: "\e656"; }
|
||||
|
||||
.icon-fanhui:before { content: "\e640"; }
|
||||
|
||||
.icon-01:before { content: "\e6aa"; }
|
||||
|
||||
.icon-yunxingwancheng:before { content: "\e69d"; }
|
||||
|
||||
.icon-chexiao:before { content: "\e636"; }
|
||||
|
||||
.icon-sousuo:before { content: "\e613"; }
|
||||
|
||||
.icon-renyuantianjia:before { content: "\e6d0"; }
|
||||
|
||||
.icon-dingdanhetong:before { content: "\e61e"; }
|
||||
|
||||
.icon-jilu:before { content: "\e644"; }
|
||||
|
||||
.icon-renwu:before { content: "\e641"; }
|
||||
|
||||
.icon-daiban:before { content: "\e61f"; }
|
||||
|
||||
.icon-gongqiuduihua:before { content: "\e6a5"; }
|
||||
|
||||
.icon-shuaxin:before { content: "\e657"; }
|
||||
|
||||
.icon-list:before { content: "\e668"; }
|
||||
|
||||
.icon-del1:before { content: "\e661"; }
|
||||
|
||||
.icon-yonghu:before { content: "\e60d"; }
|
||||
|
||||
.icon-iconfont05:before { content: "\e6c2"; }
|
||||
|
||||
.icon-tuichu:before { content: "\e60e"; }
|
||||
|
||||
.icon-553zuzhijiagou:before { content: "\e6e9"; }
|
||||
|
||||
.icon-fanhui1:before { content: "\e631"; }
|
||||
|
||||
.icon-xiangyou:before { content: "\e642"; }
|
||||
|
||||
.icon-renyuanguanli2:before { content: "\e6d1"; }
|
||||
|
||||
.icon-xiao21:before { content: "\e635"; }
|
||||
|
||||
.icon-1:before { content: "\e627"; }
|
||||
|
||||
.icon-3:before { content: "\e628"; }
|
||||
|
||||
.icon-mdliucheng:before { content: "\e65b"; }
|
||||
|
||||
.icon-iconfontdaochuexcel:before { content: "\e685"; }
|
||||
|
||||
.icon-jinlingyingcaiwangtubiao98:before { content: "\e6f6"; }
|
||||
|
||||
.icon-45354354:before { content: "\e643"; }
|
||||
|
||||
.icon-720caogaoxiang:before { content: "\e6f7"; }
|
||||
|
||||
.icon-iconyichu01:before { content: "\e662"; }
|
||||
|
||||
.icon-icontianjia01:before { content: "\e663"; }
|
||||
|
||||
.icon-guanbi:before { content: "\e63b"; }
|
||||
|
||||
.icon-jixiao:before { content: "\e646"; }
|
||||
|
||||
.icon-guanwangicon64:before { content: "\e6a6"; }
|
||||
|
||||
.icon-chenggong:before { content: "\e69f"; }
|
||||
|
||||
.icon-shaixuan:before { content: "\e664"; }
|
||||
|
||||
.icon-iconfonticon:before { content: "\e6c6"; }
|
||||
|
||||
.icon-shangwuhezuo:before { content: "\e6ab"; }
|
||||
|
||||
.icon-2:before { content: "\e629"; }
|
||||
|
||||
.icon-4:before { content: "\e62a"; }
|
||||
|
||||
.icon-5:before { content: "\e62b"; }
|
||||
|
||||
.icon-gerenshezhi:before { content: "\e6ed"; }
|
||||
|
||||
.icon-shoujianxiang:before { content: "\e6f8"; }
|
||||
|
||||
.icon-duigou:before { content: "\e658"; }
|
||||
|
||||
.icon-iconqueren:before { content: "\e62c"; }
|
||||
|
||||
.icon-daochu3:before { content: "\e637"; }
|
||||
|
||||
.icon-shejituzhi:before { content: "\e6d9"; }
|
||||
|
||||
.icon-guanbi1:before { content: "\e605"; }
|
||||
|
||||
.icon-xiangshang01:before { content: "\e606"; }
|
||||
|
||||
.icon-mima:before { content: "\e634"; }
|
||||
|
||||
.icon-comments:before { content: "\e66e"; }
|
||||
|
||||
.icon-jingpaidanju:before { content: "\e623"; }
|
||||
|
||||
.icon-fabu1:before { content: "\e702"; }
|
||||
|
||||
.icon-excel:before { content: "\e686"; }
|
||||
|
||||
.icon-word:before { content: "\e687"; }
|
||||
|
||||
.icon-daishouhuo:before { content: "\e647"; }
|
||||
|
||||
.icon-xiangzuo:before { content: "\e616"; }
|
||||
|
||||
.icon-loupan:before { content: "\e648"; }
|
||||
|
||||
.icon-yonghu1:before { content: "\e671"; }
|
||||
|
||||
.icon-yaoqinghaoyoupengyou3:before { content: "\e6a7"; }
|
||||
|
||||
.icon-daishouhuo1:before { content: "\e649"; }
|
||||
|
||||
.icon-gongyingshangguanli1:before { content: "\e692"; }
|
||||
|
||||
.icon-daochu:before { content: "\e680"; }
|
||||
|
||||
.icon-key:before { content: "\e688"; }
|
||||
|
||||
.icon-shapes:before { content: "\e65c"; }
|
||||
|
||||
.icon-right-arrow:before { content: "\e706"; }
|
||||
|
||||
.icon-xiangyou1:before { content: "\e610"; }
|
||||
|
||||
.icon-shanchu:before { content: "\e703"; }
|
||||
|
||||
.icon-caiwutongji:before { content: "\e6e0"; }
|
||||
|
||||
.icon-weibiaoti1:before { content: "\e6ee"; }
|
||||
|
||||
.icon-zhaotoubiao:before { content: "\e6ca"; }
|
||||
|
||||
.icon-zhaobiao:before { content: "\e624"; }
|
||||
|
||||
.icon-gongyingshang:before { content: "\e620"; }
|
||||
|
||||
.icon-saoma:before { content: "\e6fb"; }
|
||||
|
||||
.icon-youjian:before { content: "\e705"; }
|
||||
|
||||
.icon-ping:before { content: "\e645"; }
|
||||
|
||||
.icon-suoxiao:before { content: "\e603"; }
|
||||
|
||||
.icon-richeng:before { content: "\e64a"; }
|
||||
|
||||
.icon-fuwuzhongxingongchangrenzheng:before { content: "\e6c4"; }
|
||||
|
||||
.icon-gongyingshangkanban:before { content: "\e696"; }
|
||||
|
||||
.icon-dingdan:before { content: "\e64b"; }
|
||||
|
||||
.icon-qiyezhongzhi:before { content: "\e6c7"; }
|
||||
|
||||
.icon-gongyingshangguanli2:before { content: "\e6e7"; }
|
||||
|
||||
.icon-xianchangkaohe:before { content: "\e6c5"; }
|
||||
|
||||
.icon-tupian:before { content: "\e65d"; }
|
||||
|
||||
.icon-ceping:before { content: "\e62d"; }
|
||||
|
||||
.icon-diaochawenjuan:before { content: "\e6fa"; }
|
||||
|
||||
.icon-96:before { content: "\e6ac"; }
|
||||
|
||||
.icon-zugroup:before { content: "\e6e5"; }
|
||||
|
||||
.icon-shanchu1:before { content: "\e659"; }
|
||||
|
||||
.icon-shanchu2:before { content: "\e60f"; }
|
||||
|
||||
.icon-tongbu:before { content: "\e689"; }
|
||||
|
||||
.icon-titlebarcaidan:before { content: "\e6ef"; }
|
||||
|
||||
.icon-flag:before { content: "\e62e"; }
|
||||
|
||||
.icon-iconfontpdf:before { content: "\e619"; }
|
||||
|
||||
.icon-zuidahua:before { content: "\e604"; }
|
||||
|
||||
.icon-xunjia:before { content: "\e6cb"; }
|
||||
|
||||
.icon-movedown:before { content: "\e672"; }
|
||||
|
||||
.icon-moveup:before { content: "\e673"; }
|
||||
|
||||
.icon-baocun:before { content: "\e665"; }
|
||||
|
||||
.icon-shoudaoxunjia:before { content: "\e621"; }
|
||||
|
||||
.icon-dingdanguanli:before { content: "\e6b8"; }
|
||||
|
||||
.icon-fuwushangrenzheng:before { content: "\e6ad"; }
|
||||
|
||||
.icon-baocun1:before { content: "\e600"; }
|
||||
|
||||
.icon-pinpaishouquan:before { content: "\e62f"; }
|
||||
|
||||
.icon-icon9:before { content: "\e6fd"; }
|
||||
|
||||
.icon-daichuli:before { content: "\e690"; }
|
||||
|
||||
.icon-xunjia1:before { content: "\e625"; }
|
||||
|
||||
.icon-notice:before { content: "\e63c"; }
|
||||
|
||||
.icon-doc:before { content: "\e61a"; }
|
||||
|
||||
.icon-xls:before { content: "\e61b"; }
|
||||
|
||||
.icon-xiayi:before { content: "\e669"; }
|
||||
|
||||
.icon-shangyi:before { content: "\e66a"; }
|
||||
|
||||
.icon-qiyerenzheng:before { content: "\e6c8"; }
|
||||
|
||||
.icon-multi-line-text:before { content: "\e60b"; }
|
||||
|
||||
.icon-mulu:before { content: "\e6da"; }
|
||||
|
||||
.icon-soliddown:before { content: "\e601"; }
|
||||
|
||||
.icon-fabu2:before { content: "\e638"; }
|
||||
|
||||
.icon-tubiao16:before { content: "\e6cf"; }
|
||||
|
||||
.icon-tubiao48:before { content: "\e6db"; }
|
||||
|
||||
.icon-zizhirenzheng:before { content: "\e6d7"; }
|
||||
|
||||
.icon-biaoji:before { content: "\e639"; }
|
||||
|
||||
.icon-qunfengfuwushang:before { content: "\e6ae"; }
|
||||
|
||||
.icon-xinjiaruqiyeyujing:before { content: "\e622"; }
|
||||
|
||||
.icon-bianji:before { content: "\e611"; }
|
||||
|
||||
.icon-neirong:before { content: "\e65e"; }
|
||||
|
||||
.icon-xitongguanli:before { content: "\e6be"; }
|
||||
|
||||
.icon-jihua01:before { content: "\e6de"; }
|
||||
|
||||
.icon-jiaoxuepeizhi:before { content: "\e674"; }
|
||||
|
||||
.icon-renwu1:before { content: "\e63d"; }
|
||||
|
||||
.icon-wenhao:before { content: "\e614"; }
|
||||
|
||||
.icon-fazhankaidan:before { content: "\e6a8"; }
|
||||
|
||||
.icon-me-copy:before { content: "\e63e"; }
|
||||
|
||||
.icon-tuopanxiangzi:before { content: "\e6df"; }
|
||||
|
||||
.icon-fanhui2:before { content: "\e650"; }
|
||||
|
||||
.icon-bangzhu:before { content: "\e612"; }
|
||||
|
||||
.icon-555:before { content: "\e6f9"; }
|
||||
|
||||
.icon-kuanyi20guanrenyaoqingyuangong:before { content: "\e6d2"; }
|
||||
|
||||
.icon-zhiliangjianyan:before { content: "\e64c"; }
|
||||
|
||||
.icon-liucheng:before { content: "\e60c"; }
|
||||
|
||||
.icon-bangzhu-copy:before { content: "\e666"; }
|
||||
|
||||
.icon-iconset0114:before { content: "\e675"; }
|
||||
|
||||
.icon-iconset0115:before { content: "\e676"; }
|
||||
|
||||
.icon-iconset0186:before { content: "\e677"; }
|
||||
|
||||
.icon-iconset0187:before { content: "\e678"; }
|
||||
|
||||
.icon-iconset01100:before { content: "\e679"; }
|
||||
|
||||
.icon-iconset0256:before { content: "\e67a"; }
|
||||
|
||||
.icon-iconset0339:before { content: "\e67b"; }
|
||||
|
||||
.icon-iconset0340:before { content: "\e67c"; }
|
||||
|
||||
.icon-jingxiaoshangfuwu:before { content: "\e6af"; }
|
||||
|
||||
.icon-quanxianguanli:before { content: "\e6f3"; }
|
||||
|
||||
.icon-jingji:before { content: "\e64f"; }
|
||||
|
||||
.icon-gongyinglian:before { content: "\e698"; }
|
||||
|
||||
.icon-rizhi:before { content: "\e632"; }
|
||||
|
||||
.icon-zaixianfuwu:before { content: "\e6f4"; }
|
||||
|
||||
.icon-daoru:before { content: "\e681"; }
|
||||
|
||||
.icon-riqi:before { content: "\e615"; }
|
||||
|
||||
.icon-yingjigongyingfenbutu:before { content: "\e699"; }
|
||||
|
||||
.icon-jiagecaiji:before { content: "\e6cc"; }
|
||||
|
||||
.icon-weibiaoti7:before { content: "\e6fc"; }
|
||||
|
||||
.icon-tongji:before { content: "\e65f"; }
|
||||
|
||||
.icon-hezuohuobanguanli:before { content: "\e6a9"; }
|
||||
|
||||
.icon-shaixuan1:before { content: "\e64e"; }
|
||||
|
||||
.icon-daiwancheng:before { content: "\e6a0"; }
|
||||
|
||||
.icon-zonghesum1:before { content: "\e652"; }
|
||||
|
||||
.icon-76:before { content: "\e6e8"; }
|
||||
|
||||
.icon-fenlei:before { content: "\e6e3"; }
|
||||
|
||||
.icon-richangyewu:before { content: "\e6f0"; }
|
||||
|
||||
.icon-zhuanyetuandui:before { content: "\e6eb"; }
|
||||
|
||||
.icon-solidup:before { content: "\e602"; }
|
||||
|
||||
.icon-xiangxia:before { content: "\e607"; }
|
||||
|
||||
.icon-title-right:before { content: "\e609"; }
|
||||
|
||||
.icon-xinzeng:before { content: "\e63a"; }
|
||||
|
||||
.icon-edit:before { content: "\e65a"; }
|
||||
|
||||
.icon-xiangyou2:before { content: "\e617"; }
|
||||
|
||||
.icon-xiangzuo1:before { content: "\e618"; }
|
||||
|
||||
.icon-dengpao:before { content: "\e653"; }
|
||||
|
||||
.icon-hetong:before { content: "\e626"; }
|
||||
|
||||
.icon-quanxianguanli1:before { content: "\e6f5"; }
|
||||
|
||||
.icon-yilianjie:before { content: "\e67d"; }
|
||||
|
||||
.icon-duankailianjie:before { content: "\e67e"; }
|
||||
|
||||
.icon-tuihuo1:before { content: "\e64d"; }
|
||||
|
||||
.icon-gongyinglian1:before { content: "\e69e"; }
|
||||
|
||||
.icon-tubiao0102:before { content: "\e6cd"; }
|
||||
|
||||
.icon-wenjiangongxiang:before { content: "\e6ec"; }
|
||||
|
||||
.icon-tongguo:before { content: "\e693"; }
|
||||
|
||||
.icon-dingshijiancha:before { content: "\e66f"; }
|
||||
|
||||
.icon-xitongguanli1:before { content: "\e6dd"; }
|
||||
|
||||
.icon-icon-rank:before { content: "\e6ce"; }
|
||||
|
||||
.icon-scan:before { content: "\e682"; }
|
||||
|
||||
.icon-yunyingyong:before { content: "\e63f"; }
|
||||
|
||||
.icon-shangchuan:before { content: "\e67f"; }
|
||||
|
||||
.icon-weibiaoti201:before { content: "\e694"; }
|
||||
|
||||
.icon-tuzhang02:before { content: "\e695"; }
|
||||
|
||||
.icon-trade:before { content: "\e6a2"; }
|
||||
|
||||
.icon-icon01:before { content: "\e6f1"; }
|
||||
|
||||
.icon-gong:before { content: "\e6a3"; }
|
||||
|
||||
.icon-qianzaiyonghu:before { content: "\e6f2"; }
|
||||
|
||||
.icon-zuzhiguanli:before { content: "\e6dc"; }
|
||||
|
||||
.icon-dayin:before { content: "\e651"; }
|
||||
|
||||
.icon-cf-c19:before { content: "\e6d3"; }
|
||||
|
||||
.icon-xinzeng1:before { content: "\e704"; }
|
||||
|
||||
.icon-no:before { content: "\e697"; }
|
||||
|
||||
.icon-20160518wangzhanshouyeyindingicon:before { content: "\e6e4"; }
|
||||
|
||||
.icon-dingdan1:before { content: "\e707"; }
|
||||
|
||||
.icon-gongyingshangguanli3:before { content: "\e6b0"; }
|
||||
|
||||
.icon-duidingdan:before { content: "\e6b9"; }
|
||||
|
||||
.icon-chuangkou1:before { content: "\e66c"; }
|
||||
|
||||
.icon-chuangkou2:before { content: "\e66d"; }
|
||||
|
||||
.icon-chuangkou01:before { content: "\e66b"; }
|
||||
|
||||
.icon-jishuhezuoqiatanhezuohuitan:before { content: "\e6b1"; }
|
||||
|
||||
.icon-shangwuhezuohezuo:before { content: "\e6b2"; }
|
||||
|
||||
.icon-daochu1:before { content: "\e683"; }
|
||||
|
||||
.icon-xinpingpujuecefenxicongyerenyuan:before { content: "\e6d4"; }
|
||||
|
||||
.icon-wuliugongying01:before { content: "\e6a4"; }
|
||||
|
||||
.icon-xinxifuwuyewuyujingcongyerenyuanheimingdanchaxun:before { content: "\e6d5"; }
|
||||
|
||||
.icon-chexiao1:before { content: "\e654"; }
|
||||
|
||||
.icon-weiwancheng1:before { content: "\e6a1"; }
|
||||
|
||||
.icon-dingdandiaodu:before { content: "\e6ba"; }
|
||||
|
||||
.icon-zhongzhimima:before { content: "\e68a"; }
|
||||
|
||||
.icon-reset:before { content: "\e68b"; }
|
||||
|
||||
.icon-shuju:before { content: "\e6bb"; }
|
||||
|
||||
.icon-xiangyou3:before { content: "\e6ff"; }
|
||||
|
||||
.icon-jianqie:before { content: "\e667"; }
|
||||
|
||||
.icon-qunzu:before { content: "\e6e6"; }
|
||||
|
||||
.icon-bianji1:before { content: "\e655"; }
|
||||
|
||||
.icon-shizhong:before { content: "\e68d"; }
|
||||
|
||||
.icon-bangzhu1:before { content: "\e68e"; }
|
||||
|
||||
.icon-cuowutishi:before { content: "\e68f"; }
|
||||
|
||||
.icon-yewurenyuanchushen:before { content: "\e6d6"; }
|
||||
|
||||
.icon-shenqingkuaisucaigoujiandan:before { content: "\e6c9"; }
|
||||
|
||||
.icon-diaochawenjuan1:before { content: "\e6d8"; }
|
||||
|
||||
.icon-jihuabiao:before { content: "\e6c3"; }
|
||||
|
||||
.icon-huanfu1:before { content: "\e708"; }
|
||||
|
||||
BIN
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.eot
Normal file
BIN
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.eot
Normal file
Binary file not shown.
2872
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.js
Normal file
2872
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.js
Normal file
File diff suppressed because one or more lines are too long
1275
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.svg
Normal file
1275
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.svg
Normal file
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 222 KiB |
BIN
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.ttf
Normal file
BIN
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.ttf
Normal file
Binary file not shown.
BIN
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.woff
Normal file
BIN
MyCode.Project.WebApi/pages/static/lightblue/fonts/iconfont.woff
Normal file
Binary file not shown.
Reference in New Issue
Block a user