Skip to content

Commit 8d97594

Browse files
committed
Merge branch 'dev-codeblocks' into src. Refs #21.
Issue won't be closed yet, as there are still improvements to be made in the colouring.
2 parents 6a1c909 + df0e00b commit 8d97594

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

haskell.css

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
.language-haskell mark.comment {
2-
color: cyan;
2+
color: grey;
33
}
44

55
.language-haskell mark.string {
66
color: orangered;
77
}
88

99
.language-haskell mark.literal {
10-
color: greenyellow;
10+
color: darkgreen;
11+
}
12+
13+
.language-haskell mark.keyword {
14+
color: blue;
1115
}

home.css

+4
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@
2121
color: white;
2222
padding: .5em;
2323
}
24+
25+
#panel .language-haskell mark.literal {
26+
color: greenyellow;
27+
}

style.css

+8
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,14 @@ code {
9191
font-family: monospace;
9292
}
9393

94+
pre {
95+
border: 0;
96+
border-style: solid;
97+
border-width: 0 0 0 5px;
98+
border-color: #9775AA;
99+
padding: .5em;
100+
}
101+
94102
#page {
95103
background: white;
96104
box-shadow: 0 0 .5em lightgrey;

0 commit comments

Comments
 (0)