summaryrefslogtreecommitdiffstats
path: root/assets/sass/style.scss
blob: 7ebeac20a0ba077d3452f5ef9aaa0e433d0bbc67 (plain)
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
/*
  Common Variables

  Feel free to change!
*/

/* Fonts */
$main-font: "Palatino Linotype", "Book Antiqua", Palatino, serif;
$heading-font: sans-serif;
$regular-font-size: 1.1em; /* 20px / 16px = 1.25em; support text resizing in all browsers */


/*
  Color

  Make sure to leave `colorScheme` in `params.yaml` file empty for granular control
*/
$text-light-color: #676767;
$text-color: #454545;
$heading-color: #404040;
$link-color: #841212;

// - - - - - - - - - - Global styles
@import "ed";
@import "syntax";
@import "form-elements";
@import "customize";
@import "themes";

/* Code */
pre {
  max-height: 400px;
  overflow-y: auto;
}

.container-wide {
  max-width: 32rem;
  padding-left:  1rem;
  padding-right: 1rem;
  margin-left:  auto;
  margin-right: auto;
}

@media (min-width: 56em) {
  .container-wide {
    max-width: 56rem !important;
  }
}