Make a stripped-down stylesheet for the editor to use.
darkmorford -
d3add6d85bd7
Not Reviewed
Show More
Add another comment
TODOs: 0 unresolved 0 Resolved
COMMENTS: 0 General 0 Inline
@@ -0,0 +1,5
1 @charset "utf-8";
2
3 $font-stack: Verdana, Arial, Helvetica, sans-serif;
4 $banner-font: monospace;
5 $credits-font: Arial, Helvetica, sans-serif;
@@ -0,0 +1,18
1 @charset "utf-8";
2
3 $background: #4C565E;
4 $foreground: #757B81;
5 $infobox: #23272B;
6
7 $nl-background: #000000;
8 $comic-background: #FFFFFF;
9
10 $percent-border: #556677;
11
12 $text-normal: #B7BFC7;
13 $text-accent: #F6B33D;
14 $text-credits: #E4E4D6;
15
16 $link-normal: #FF6600;
17 $link-hover: #EB5252;
18 $link-visited: #ECECA3;
@@ -0,0 +1,27
1 @charset "utf-8";
2 @import "fonts";
3 @import "palette";
4
5 body {
6 background-color: $infobox;
7 font-size: 0.8em;
8 font-family: $font-stack;
9 color: $text-normal;
10 }
11
12 a {
13 text-decoration: none;
14 color: $link-normal;
15
16 &:visited {
17 color: $link-visited;
18 }
19
20 &:hover {
21 color: $link-hover;
22 }
23 }
24
25 h3, h4, h5, h6 {
26 color: $text-accent;
27 }
Comments 0
You need to be logged in to leave comments. Login now