generated from remiliacorp/exocore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
57 lines (31 loc) · 1.22 KB
/
styles.scss
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
---
---
//This stylesheet normalizes formatting across browsers:
@import "../_sass/normalize";
//This one handles code highlighting:
@import "../_sass/code";
//Uncomment one of the following lines to choose a theme:
// @import "../_sass/yotsuba";
// @import "../_sass/edith";
@import "../_sass/web1";
// @import "../_sass/vellum";
// @import "../_sass/paper";
// @import "../_sass/heaven";
//@import "../_sass/gemini"; // Doesn't work yet
@import "../_sass/responsive";
/*-----------------------------
CUSTOM BACKGROUND
Uncomment one of the below lines to override the background color/image of your chosen theme. 'theme' will leave the default theme background. */
$bg-color: theme; /* <-- leave default theme BG color */
$bg-image: theme; /* <-- leave default theme BG image */
//$bg-image: url(assets/imgs/BGs/bgtile-1.png);
//$bg-image: url(assets/imgs/BGs/bgtile-2.png);
//$bg-image: url(assets/imgs/BGs/bgtile-3.png);
//$bg-image: url(assets/imgs/BGs/bgtile-4.png);
//$bg-image: url(assets/imgs/BGs/bgtile-5.png);
/*There are 30 sample background tiles to choose from in assets > imgs > BGs*/
/*-----------------------------*/
body {
background-color: $bg-color;
background-image: $bg-image;
}