This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0
wcui/src/css/prism.scss

49 lines
1.2 KiB
SCSS
Raw Normal View History

2017-09-04 01:02:25 +08:00
@charset "UTF-8";
/**
*
2017-09-04 01:02:25 +08:00
* @authors yutent (yutent@doui.cc)
* @date 2017-02-13 13:53:38
*
2017-09-04 01:02:25 +08:00
*/
@import 'var.scss';
2017-09-04 01:02:25 +08:00
/*代码块*/
2018-07-15 19:43:34 +08:00
.do-ui-blockcode {position: relative;margin: 15px 0;padding: 8px 0;line-height: 1.5;border-radius:3px;background: nth($cp, 1);
2017-09-04 01:02:25 +08:00
/*语法高亮*/
.lang {position: relative;display: block;padding: 0 8px;color: #383a42;word-wrap: break-word;white-space: pre-wrap;
2017-09-04 01:02:25 +08:00
.c-comment{color: #8e908c;font-style:italic;}
.c-smartyx {color: #607d8b;}
.c-important {color: #f5871f;font-style:italic;}
.c-punctuation {color: #986756;}
.c-regex {color: #c82829;}
2017-09-04 01:02:25 +08:00
.c-boolean,
.c-number,.c-params {color: #f5871f;}
.c-function {color:#009688;}
2017-09-04 01:02:25 +08:00
.c-class-name,
.c-build-in {color:#3aa9f3;}
2017-09-04 01:02:25 +08:00
.c-class-name,
.c-build-in {font-style:italic;font-weight:bold;}
2017-09-04 01:02:25 +08:00
.c-attr-name,
.c-property {color: #c79f0f;font-weight:bold;}
2017-09-04 01:02:25 +08:00
.c-string,
.c-attr-value {color: #5ab302;}
2017-09-04 01:02:25 +08:00
.c-tag,
.c-keyword,
.c-selector,
.c-operator {color: #d81406;}
.c-keyword,.c-params,.c-property {font-style:italic;}
}
2017-09-04 01:02:25 +08:00
}
/*行内代码*/
.do-ui-inlinecode {display:inline-block;margin:0 2px;padding:0 5px;line-height: 1.5;color:#d14;background: nth($cp, 1);border-radius:3px;}