-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (80 loc) · 1.68 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (80 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
html {
font-size: 1rem;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
line-height: 1.4;
background-color: #fffce8;
}
.container {
max-width: 100ch;
margin: 0 auto;
padding: 20px;
}
pre.prettyprint {
display: block;
background-color: #fdf6e3; /* light cream background */
color: #333; /* default text color */
}
pre .nocode {
background-color: none;
color: #000;
}
pre .str {
color: #d14; /* dark red / pinkish for strings */
}
pre .kwd {
color: #008080; /* teal for keywords */
font-weight: bold;
}
pre .com {
color: #93a1a1; /* grayish-blue for comments */
font-style: italic;
}
pre .typ {
color: #268bd2; /* blue for types */
}
pre .lit {
color: #b58900; /* goldenrod / dark yellow for literals */
}
pre .pun {
color: #586e75; /* dark gray for punctuation */
}
pre .pln {
color: #333; /* dark text for plain text */
}
pre .tag {
color: #b58900; /* orange/gold for tags */
font-weight: bold;
}
pre .atn {
color: #2aa198; /* cyan/teal for attribute names */
font-weight: bold;
}
pre .atv {
color: #d14; /* same as string color for attribute values */
}
pre .dec {
color: #b58900; /* dark yellow for numbers / decimals */
}
pre {
/* background-color: #c6bec4; */
/* color: white; */
border-radius: 10px;
font-size: 0.7rem;
}
/* Kbd for filenames in source code */
kbd {
background-color: #eee8d5;
border: 1px solid #93a1a1;
border-radius: 4px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
padding: 2px 6px;
font-family: 'Courier New', Courier, monospace;
}
img {
max-width: 100%;
height: auto;
}