krz/php-blog
A PHP blogging system with built-in static comments.
clone: git clone https://gitbay.org/krz/php-blog.git
1/* PrismJS 1.23.0
2https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+bash+markdown+markup-templating+php+python+yaml */
3/**
4 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
5 * Based on https://github.com/chriskempson/tomorrow-theme
6 * @author Rose Pritchard
7 */
8
9code[class*="language-"],
10pre[class*="language-"] {
11 color: #ccc;
12 background: none;
13 /* font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; */
14 font-size: 1em;
15 text-align: left;
16 white-space: pre;
17 word-spacing: normal;
18 word-break: normal;
19 word-wrap: normal;
20 line-height: 1.5;
21
22 -moz-tab-size: 4;
23 -o-tab-size: 4;
24 tab-size: 4;
25
26 -webkit-hyphens: none;
27 -moz-hyphens: none;
28 -ms-hyphens: none;
29 hyphens: none;
30
31}
32
33/* Code blocks */
34pre[class*="language-"] {
35 padding: 1em;
36 margin: .5em 0;
37 overflow: auto;
38}
39
40:not(pre) > code[class*="language-"],
41pre[class*="language-"] {
42 background: #2d2d2d;
43}
44
45/* Inline code */
46:not(pre) > code[class*="language-"] {
47 padding: .1em;
48 border-radius: .3em;
49 white-space: normal;
50}
51
52.token.comment,
53.token.block-comment,
54.token.prolog,
55.token.doctype,
56.token.cdata {
57 color: #999;
58}
59
60.token.punctuation {
61 color: #ccc;
62}
63
64.token.tag,
65.token.attr-name,
66.token.namespace,
67.token.deleted {
68 color: #e2777a;
69}
70
71.token.function-name {
72 color: #6196cc;
73}
74
75.token.boolean,
76.token.number,
77.token.function {
78 color: #f08d49;
79}
80
81.token.property,
82.token.class-name,
83.token.constant,
84.token.symbol {
85 color: #f8c555;
86}
87
88.token.selector,
89.token.important,
90.token.atrule,
91.token.keyword,
92.token.builtin {
93 color: #cc99cd;
94}
95
96.token.string,
97.token.char,
98.token.attr-value,
99.token.regex,
100.token.variable {
101 color: #7ec699;
102}
103
104.token.operator,
105.token.entity,
106.token.url {
107 color: #67cdcc;
108}
109
110.token.important,
111.token.bold {
112 font-weight: bold;
113}
114.token.italic {
115 font-style: italic;
116}
117
118.token.entity {
119 cursor: help;
120}
121
122.token.inserted {
123 color: green;
124}
125