tachyonscss-rails 4.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +33 -0
  3. data/README.md +42 -0
  4. data/Rakefile +43 -0
  5. data/app/assets/stylesheets/scss/_aspect-ratios.scss +142 -0
  6. data/app/assets/stylesheets/scss/_background-position.scss +133 -0
  7. data/app/assets/stylesheets/scss/_background-size.scss +41 -0
  8. data/app/assets/stylesheets/scss/_border-colors.scss +93 -0
  9. data/app/assets/stylesheets/scss/_border-radius.scss +134 -0
  10. data/app/assets/stylesheets/scss/_border-style.scss +55 -0
  11. data/app/assets/stylesheets/scss/_border-widths.scss +81 -0
  12. data/app/assets/stylesheets/scss/_borders.scss +65 -0
  13. data/app/assets/stylesheets/scss/_box-shadow.scss +48 -0
  14. data/app/assets/stylesheets/scss/_box-sizing.scss +49 -0
  15. data/app/assets/stylesheets/scss/_clears.scss +47 -0
  16. data/app/assets/stylesheets/scss/_code.scss +18 -0
  17. data/app/assets/stylesheets/scss/_coordinates.scss +153 -0
  18. data/app/assets/stylesheets/scss/_debug-children.scss +21 -0
  19. data/app/assets/stylesheets/scss/_debug-grid.scss +33 -0
  20. data/app/assets/stylesheets/scss/_debug.scss +127 -0
  21. data/app/assets/stylesheets/scss/_debug_children.scss +18 -0
  22. data/app/assets/stylesheets/scss/_display.scss +111 -0
  23. data/app/assets/stylesheets/scss/_flexbox.scss +257 -0
  24. data/app/assets/stylesheets/scss/_floats.scss +56 -0
  25. data/app/assets/stylesheets/scss/_font-family.scss +99 -0
  26. data/app/assets/stylesheets/scss/_font-style.scss +36 -0
  27. data/app/assets/stylesheets/scss/_font-weight.scss +87 -0
  28. data/app/assets/stylesheets/scss/_forms.scss +23 -0
  29. data/app/assets/stylesheets/scss/_gradients.scss +29 -0
  30. data/app/assets/stylesheets/scss/_heights.scss +131 -0
  31. data/app/assets/stylesheets/scss/_hovers.scss +166 -0
  32. data/app/assets/stylesheets/scss/_images.scss +18 -0
  33. data/app/assets/stylesheets/scss/_letter-spacing.scss +40 -0
  34. data/app/assets/stylesheets/scss/_line-height.scss +41 -0
  35. data/app/assets/stylesheets/scss/_links.scss +34 -0
  36. data/app/assets/stylesheets/scss/_lists.scss +15 -0
  37. data/app/assets/stylesheets/scss/_max-widths.scss +105 -0
  38. data/app/assets/stylesheets/scss/_module-template.scss +29 -0
  39. data/app/assets/stylesheets/scss/_negative-margins.scss +205 -0
  40. data/app/assets/stylesheets/scss/_nested.scss +63 -0
  41. data/app/assets/stylesheets/scss/_normalize.scss +454 -0
  42. data/app/assets/stylesheets/scss/_opacity.scss +27 -0
  43. data/app/assets/stylesheets/scss/_outlines.scss +39 -0
  44. data/app/assets/stylesheets/scss/_overflow.scss +82 -0
  45. data/app/assets/stylesheets/scss/_position.scss +44 -0
  46. data/app/assets/stylesheets/scss/_rotations.scss +50 -0
  47. data/app/assets/stylesheets/scss/_skins-pseudo.scss +243 -0
  48. data/app/assets/stylesheets/scss/_skins.scss +143 -0
  49. data/app/assets/stylesheets/scss/_spacing.scss +947 -0
  50. data/app/assets/stylesheets/scss/_styles.scss +15 -0
  51. data/app/assets/stylesheets/scss/_tables.scss +42 -0
  52. data/app/assets/stylesheets/scss/_text-align.scss +53 -0
  53. data/app/assets/stylesheets/scss/_text-decoration.scss +42 -0
  54. data/app/assets/stylesheets/scss/_text-transform.scss +53 -0
  55. data/app/assets/stylesheets/scss/_type-scale.scss +102 -0
  56. data/app/assets/stylesheets/scss/_typography.scss +129 -0
  57. data/app/assets/stylesheets/scss/_utilities.scss +57 -0
  58. data/app/assets/stylesheets/scss/_variables.scss +143 -0
  59. data/app/assets/stylesheets/scss/_vertical-align.scss +43 -0
  60. data/app/assets/stylesheets/scss/_visibility.scss +58 -0
  61. data/app/assets/stylesheets/scss/_white-space.scss +41 -0
  62. data/app/assets/stylesheets/scss/_widths.scss +150 -0
  63. data/app/assets/stylesheets/scss/_word-break.scss +43 -0
  64. data/app/assets/stylesheets/scss/_z-index.scss +60 -0
  65. data/app/assets/stylesheets/tachyons.scss +94 -0
  66. data/lib/tachyonscss-rails/engine.rb +11 -0
  67. data/lib/tachyonscss-rails/version.rb +3 -0
  68. data/lib/tachyonscss-rails.rb +5 -0
  69. metadata +113 -0
@@ -0,0 +1,55 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER STYLES
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Depends on base border module in _borders.css
14
+
15
+ Base:
16
+ b = border-style
17
+
18
+ Modifiers:
19
+ --none = none
20
+ --dotted = dotted
21
+ --dashed = dashed
22
+ --solid = solid
23
+
24
+ Media Query Extensions:
25
+ -ns = not-small
26
+ -m = medium
27
+ -l = large
28
+
29
+ */
30
+
31
+ .b--dotted { border-style: dotted; }
32
+ .b--dashed { border-style: dashed; }
33
+ .b--solid { border-style: solid; }
34
+ .b--none { border-style: none; }
35
+
36
+ @media #{$breakpoint-not-small} {
37
+ .b--dotted-ns { border-style: dotted; }
38
+ .b--dashed-ns { border-style: dashed; }
39
+ .b--solid-ns { border-style: solid; }
40
+ .b--none-ns { border-style: none; }
41
+ }
42
+
43
+ @media #{$breakpoint-medium} {
44
+ .b--dotted-m { border-style: dotted; }
45
+ .b--dashed-m { border-style: dashed; }
46
+ .b--solid-m { border-style: solid; }
47
+ .b--none-m { border-style: none; }
48
+ }
49
+
50
+ @media #{$breakpoint-large} {
51
+ .b--dotted-l { border-style: dotted; }
52
+ .b--dashed-l { border-style: dashed; }
53
+ .b--solid-l { border-style: solid; }
54
+ .b--none-l { border-style: none; }
55
+ }
@@ -0,0 +1,81 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER WIDTHS
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Base:
14
+ bw = border-width
15
+
16
+ Modifiers:
17
+ 0 = 0 width border
18
+ 1 = 1st step in border-width scale
19
+ 2 = 2nd step in border-width scale
20
+ 3 = 3rd step in border-width scale
21
+ 4 = 4th step in border-width scale
22
+ 5 = 5th step in border-width scale
23
+
24
+ Media Query Extensions:
25
+ -ns = not-small
26
+ -m = medium
27
+ -l = large
28
+
29
+ */
30
+
31
+ .bw0 { border-width: $border-width-none; }
32
+ .bw1 { border-width: $border-width-1; }
33
+ .bw2 { border-width: $border-width-2; }
34
+ .bw3 { border-width: $border-width-3; }
35
+ .bw4 { border-width: $border-width-4; }
36
+ .bw5 { border-width: $border-width-5; }
37
+
38
+ /* Resets */
39
+ .bt-0 { border-top-width: $border-width-none }
40
+ .br-0 { border-right-width: $border-width-none }
41
+ .bb-0 { border-bottom-width: $border-width-none }
42
+ .bl-0 { border-left-width: $border-width-none }
43
+
44
+ @media #{$breakpoint-not-small} {
45
+ .bw0-ns { border-width: $border-width-none; }
46
+ .bw1-ns { border-width: $border-width-1; }
47
+ .bw2-ns { border-width: $border-width-2; }
48
+ .bw3-ns { border-width: $border-width-3; }
49
+ .bw4-ns { border-width: $border-width-4; }
50
+ .bw5-ns { border-width: $border-width-5; }
51
+ .bt-0-ns { border-top-width: $border-width-none }
52
+ .br-0-ns { border-right-width: $border-width-none }
53
+ .bb-0-ns { border-bottom-width: $border-width-none }
54
+ .bl-0-ns { border-left-width: $border-width-none }
55
+ }
56
+
57
+ @media #{$breakpoint-medium} {
58
+ .bw0-m { border-width: $border-width-none; }
59
+ .bw1-m { border-width: $border-width-1; }
60
+ .bw2-m { border-width: $border-width-2; }
61
+ .bw3-m { border-width: $border-width-3; }
62
+ .bw4-m { border-width: $border-width-4; }
63
+ .bw5-m { border-width: $border-width-5; }
64
+ .bt-0-m { border-top-width: $border-width-none }
65
+ .br-0-m { border-right-width: $border-width-none }
66
+ .bb-0-m { border-bottom-width: $border-width-none }
67
+ .bl-0-m { border-left-width: $border-width-none }
68
+ }
69
+
70
+ @media #{$breakpoint-large} {
71
+ .bw0-l { border-width: $border-width-none; }
72
+ .bw1-l { border-width: $border-width-1; }
73
+ .bw2-l { border-width: $border-width-2; }
74
+ .bw3-l { border-width: $border-width-3; }
75
+ .bw4-l { border-width: $border-width-4; }
76
+ .bw5-l { border-width: $border-width-5; }
77
+ .bt-0-l { border-top-width: $border-width-none }
78
+ .br-0-l { border-right-width: $border-width-none }
79
+ .bb-0-l { border-bottom-width: $border-width-none }
80
+ .bl-0-l { border-left-width: $border-width-none }
81
+ }
@@ -0,0 +1,65 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDERS
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Base:
14
+ b = border
15
+
16
+ Modifiers:
17
+ a = all
18
+ t = top
19
+ r = right
20
+ b = bottom
21
+ l = left
22
+ n = none
23
+
24
+ Media Query Extensions:
25
+ -ns = not-small
26
+ -m = medium
27
+ -l = large
28
+
29
+ */
30
+
31
+ .ba { border-style: solid; border-width: 1px; }
32
+ .bt { border-top-style: solid; border-top-width: 1px; }
33
+ .br { border-right-style: solid; border-right-width: 1px; }
34
+ .bb { border-bottom-style: solid; border-bottom-width: 1px; }
35
+ .bl { border-left-style: solid; border-left-width: 1px; }
36
+ .bn { border-style: none; border-width: 0; }
37
+
38
+
39
+ @media #{$breakpoint-not-small} {
40
+ .ba-ns { border-style: solid; border-width: 1px; }
41
+ .bt-ns { border-top-style: solid; border-top-width: 1px; }
42
+ .br-ns { border-right-style: solid; border-right-width: 1px; }
43
+ .bb-ns { border-bottom-style: solid; border-bottom-width: 1px; }
44
+ .bl-ns { border-left-style: solid; border-left-width: 1px; }
45
+ .bn-ns { border-style: none; border-width: 0; }
46
+ }
47
+
48
+ @media #{$breakpoint-medium} {
49
+ .ba-m { border-style: solid; border-width: 1px; }
50
+ .bt-m { border-top-style: solid; border-top-width: 1px; }
51
+ .br-m { border-right-style: solid; border-right-width: 1px; }
52
+ .bb-m { border-bottom-style: solid; border-bottom-width: 1px; }
53
+ .bl-m { border-left-style: solid; border-left-width: 1px; }
54
+ .bn-m { border-style: none; border-width: 0; }
55
+ }
56
+
57
+ @media #{$breakpoint-large} {
58
+ .ba-l { border-style: solid; border-width: 1px; }
59
+ .bt-l { border-top-style: solid; border-top-width: 1px; }
60
+ .br-l { border-right-style: solid; border-right-width: 1px; }
61
+ .bb-l { border-bottom-style: solid; border-bottom-width: 1px; }
62
+ .bl-l { border-left-style: solid; border-left-width: 1px; }
63
+ .bn-l { border-style: none; border-width: 0; }
64
+ }
65
+
@@ -0,0 +1,48 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BOX-SHADOW
11
+ Docs: http://tachyons.io/docs/themes/box-shadow/
12
+
13
+ Media Query Extensions:
14
+ -ns = not-small
15
+ -m = medium
16
+ -l = large
17
+
18
+ */
19
+
20
+ .shadow-1 { box-shadow: $box-shadow-1; }
21
+ .shadow-2 { box-shadow: $box-shadow-2; }
22
+ .shadow-3 { box-shadow: $box-shadow-3; }
23
+ .shadow-4 { box-shadow: $box-shadow-4; }
24
+ .shadow-5 { box-shadow: $box-shadow-5; }
25
+
26
+ @media #{$breakpoint-not-small} {
27
+ .shadow-1-ns { box-shadow: $box-shadow-1; }
28
+ .shadow-2-ns { box-shadow: $box-shadow-2; }
29
+ .shadow-3-ns { box-shadow: $box-shadow-3; }
30
+ .shadow-4-ns { box-shadow: $box-shadow-4; }
31
+ .shadow-5-ns { box-shadow: $box-shadow-5; }
32
+ }
33
+
34
+ @media #{$breakpoint-medium} {
35
+ .shadow-1-m { box-shadow: $box-shadow-1; }
36
+ .shadow-2-m { box-shadow: $box-shadow-2; }
37
+ .shadow-3-m { box-shadow: $box-shadow-3; }
38
+ .shadow-4-m { box-shadow: $box-shadow-4; }
39
+ .shadow-5-m { box-shadow: $box-shadow-5; }
40
+ }
41
+
42
+ @media #{$breakpoint-large} {
43
+ .shadow-1-l { box-shadow: $box-shadow-1; }
44
+ .shadow-2-l { box-shadow: $box-shadow-2; }
45
+ .shadow-3-l { box-shadow: $box-shadow-3; }
46
+ .shadow-4-l { box-shadow: $box-shadow-4; }
47
+ .shadow-5-l { box-shadow: $box-shadow-5; }
48
+ }
@@ -0,0 +1,49 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BOX SIZING
11
+
12
+ */
13
+
14
+ html,
15
+ body,
16
+ div,
17
+ article,
18
+ section,
19
+ main,
20
+ footer,
21
+ header,
22
+ form,
23
+ fieldset,
24
+ legend,
25
+ pre,
26
+ code,
27
+ a,
28
+ h1,h2,h3,h4,h5,h6,
29
+ p,
30
+ ul,
31
+ ol,
32
+ li,
33
+ dl,
34
+ dt,
35
+ dd,
36
+ textarea,
37
+ table,
38
+ td,
39
+ th,
40
+ tr,
41
+ input[type="email"],
42
+ input[type="number"],
43
+ input[type="password"],
44
+ input[type="tel"],
45
+ input[type="text"],
46
+ input[type="url"],
47
+ .border-box {
48
+ box-sizing: border-box;
49
+ }
@@ -0,0 +1,47 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ CLEARFIX
11
+ http://tachyons.io/docs/layout/clearfix/
12
+
13
+ */
14
+
15
+ /* Nicolas Gallaghers Clearfix solution
16
+ Ref: http://nicolasgallagher.com/micro-clearfix-hack/ */
17
+
18
+ .cf:before,
19
+ .cf:after { content: " "; display: table; }
20
+ .cf:after { clear: both; }
21
+ .cf { *zoom: 1; }
22
+
23
+ .cl { clear: left; }
24
+ .cr { clear: right; }
25
+ .cb { clear: both; }
26
+ .cn { clear: none; }
27
+
28
+ @media #{$breakpoint-not-small} {
29
+ .cl-ns { clear: left; }
30
+ .cr-ns { clear: right; }
31
+ .cb-ns { clear: both; }
32
+ .cn-ns { clear: none; }
33
+ }
34
+
35
+ @media #{$breakpoint-medium} {
36
+ .cl-m { clear: left; }
37
+ .cr-m { clear: right; }
38
+ .cb-m { clear: both; }
39
+ .cn-m { clear: none; }
40
+ }
41
+
42
+ @media #{$breakpoint-large} {
43
+ .cl-l { clear: left; }
44
+ .cr-l { clear: right; }
45
+ .cb-l { clear: both; }
46
+ .cn-l { clear: none; }
47
+ }
@@ -0,0 +1,18 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ CODE
11
+
12
+ */
13
+
14
+ .pre {
15
+ overflow-x: auto;
16
+ overflow-y: hidden;
17
+ overflow: scroll;
18
+ }
@@ -0,0 +1,153 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ COORDINATES
11
+ Docs: http://tachyons.io/docs/layout/position/
12
+
13
+ Use in combination with the position module.
14
+
15
+ Base:
16
+ top
17
+ bottom
18
+ right
19
+ left
20
+
21
+ Modifiers:
22
+ -0 = literal value 0
23
+ -1 = literal value 1
24
+ -2 = literal value 2
25
+ --1 = literal value -1
26
+ --2 = literal value -2
27
+
28
+ Media Query Extensions:
29
+ -ns = not-small
30
+ -m = medium
31
+ -l = large
32
+
33
+ */
34
+
35
+ .top-0 { top: 0; }
36
+ .right-0 { right: 0; }
37
+ .bottom-0 { bottom: 0; }
38
+ .left-0 { left: 0; }
39
+
40
+ .top-1 { top: 1rem; }
41
+ .right-1 { right: 1rem; }
42
+ .bottom-1 { bottom: 1rem; }
43
+ .left-1 { left: 1rem; }
44
+
45
+ .top-2 { top: 2rem; }
46
+ .right-2 { right: 2rem; }
47
+ .bottom-2 { bottom: 2rem; }
48
+ .left-2 { left: 2rem; }
49
+
50
+ .top--1 { top: -1rem; }
51
+ .right--1 { right: -1rem; }
52
+ .bottom--1 { bottom: -1rem; }
53
+ .left--1 { left: -1rem; }
54
+
55
+ .top--2 { top: -2rem; }
56
+ .right--2 { right: -2rem; }
57
+ .bottom--2 { bottom: -2rem; }
58
+ .left--2 { left: -2rem; }
59
+
60
+
61
+ .absolute--fill {
62
+ top: 0;
63
+ right: 0;
64
+ bottom: 0;
65
+ left: 0;
66
+ }
67
+
68
+ @media #{$breakpoint-not-small} {
69
+ .top-0-ns { top: 0; }
70
+ .left-0-ns { left: 0; }
71
+ .right-0-ns { right: 0; }
72
+ .bottom-0-ns { bottom: 0; }
73
+ .top-1-ns { top: 1rem; }
74
+ .left-1-ns { left: 1rem; }
75
+ .right-1-ns { right: 1rem; }
76
+ .bottom-1-ns { bottom: 1rem; }
77
+ .top-2-ns { top: 2rem; }
78
+ .left-2-ns { left: 2rem; }
79
+ .right-2-ns { right: 2rem; }
80
+ .bottom-2-ns { bottom: 2rem; }
81
+ .top--1-ns { top: -1rem; }
82
+ .right--1-ns { right: -1rem; }
83
+ .bottom--1-ns { bottom: -1rem; }
84
+ .left--1-ns { left: -1rem; }
85
+ .top--2-ns { top: -2rem; }
86
+ .right--2-ns { right: -2rem; }
87
+ .bottom--2-ns { bottom: -2rem; }
88
+ .left--2-ns { left: -2rem; }
89
+ .absolute--fill-ns {
90
+ top: 0;
91
+ right: 0;
92
+ bottom: 0;
93
+ left: 0;
94
+ }
95
+ }
96
+
97
+ @media #{$breakpoint-medium} {
98
+ .top-0-m { top: 0; }
99
+ .left-0-m { left: 0; }
100
+ .right-0-m { right: 0; }
101
+ .bottom-0-m { bottom: 0; }
102
+ .top-1-m { top: 1rem; }
103
+ .left-1-m { left: 1rem; }
104
+ .right-1-m { right: 1rem; }
105
+ .bottom-1-m { bottom: 1rem; }
106
+ .top-2-m { top: 2rem; }
107
+ .left-2-m { left: 2rem; }
108
+ .right-2-m { right: 2rem; }
109
+ .bottom-2-m { bottom: 2rem; }
110
+ .top--1-m { top: -1rem; }
111
+ .right--1-m { right: -1rem; }
112
+ .bottom--1-m { bottom: -1rem; }
113
+ .left--1-m { left: -1rem; }
114
+ .top--2-m { top: -2rem; }
115
+ .right--2-m { right: -2rem; }
116
+ .bottom--2-m { bottom: -2rem; }
117
+ .left--2-m { left: -2rem; }
118
+ .absolute--fill-m {
119
+ top: 0;
120
+ right: 0;
121
+ bottom: 0;
122
+ left: 0;
123
+ }
124
+ }
125
+
126
+ @media #{$breakpoint-large} {
127
+ .top-0-l { top: 0; }
128
+ .left-0-l { left: 0; }
129
+ .right-0-l { right: 0; }
130
+ .bottom-0-l { bottom: 0; }
131
+ .top-1-l { top: 1rem; }
132
+ .left-1-l { left: 1rem; }
133
+ .right-1-l { right: 1rem; }
134
+ .bottom-1-l { bottom: 1rem; }
135
+ .top-2-l { top: 2rem; }
136
+ .left-2-l { left: 2rem; }
137
+ .right-2-l { right: 2rem; }
138
+ .bottom-2-l { bottom: 2rem; }
139
+ .top--1-l { top: -1rem; }
140
+ .right--1-l { right: -1rem; }
141
+ .bottom--1-l { bottom: -1rem; }
142
+ .left--1-l { left: -1rem; }
143
+ .top--2-l { top: -2rem; }
144
+ .right--2-l { right: -2rem; }
145
+ .bottom--2-l { bottom: -2rem; }
146
+ .left--2-l { left: -2rem; }
147
+ .absolute--fill-l {
148
+ top: 0;
149
+ right: 0;
150
+ bottom: 0;
151
+ left: 0;
152
+ }
153
+ }
@@ -0,0 +1,21 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ DEBUG CHILDREN
11
+ Docs: http://tachyons.io/docs/debug/
12
+
13
+ Just add the debug class to any element to see outlines on its
14
+ children.
15
+
16
+ */
17
+
18
+ .debug * { outline: 1px solid gold; }
19
+ .debug-white * { outline: 1px solid white; }
20
+ .debug-black * { outline: 1px solid black; }
21
+
@@ -0,0 +1,33 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ DEBUG GRID
11
+ http://tachyons.io/docs/debug-grid/
12
+
13
+ Can be useful for debugging layout issues
14
+ or helping to make sure things line up perfectly.
15
+ Just tack one of these classes onto a parent element.
16
+
17
+ */
18
+
19
+ .debug-grid {
20
+ background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTRDOTY4N0U2N0VFMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTRDOTY4N0Q2N0VFMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NjcyQkQ3NjY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NjcyQkQ3NzY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsBS+GMAAAAjSURBVHjaYvz//z8DLsD4gcGXiYEAGBIKGBne//fFpwAgwAB98AaF2pjlUQAAAABJRU5ErkJggg==) repeat top left;
21
+ }
22
+
23
+ .debug-grid-16 {
24
+ background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODYyRjhERDU2N0YyMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODYyRjhERDQ2N0YyMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NjcyQkQ3QTY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NjcyQkQ3QjY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvCS01IAAABMSURBVHjaYmR4/5+BFPBfAMFm/MBgx8RAGWCn1AAmSg34Q6kBDKMGMDCwICeMIemF/5QawEipAWwUhwEjMDvbAWlWkvVBwu8vQIABAEwBCph8U6c0AAAAAElFTkSuQmCC) repeat top left;
25
+ }
26
+
27
+ .debug-grid-8-solid {
28
+ background:white url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAAAAAD/4QMxaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzExMSA3OS4xNTgzMjUsIDIwMTUvMDkvMTAtMDE6MTA6MjAgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkIxMjI0OTczNjdCMzExRTZCMkJDRTI0MDgxMDAyMTcxIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkIxMjI0OTc0NjdCMzExRTZCMkJDRTI0MDgxMDAyMTcxIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QjEyMjQ5NzE2N0IzMTFFNkIyQkNFMjQwODEwMDIxNzEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QjEyMjQ5NzI2N0IzMTFFNkIyQkNFMjQwODEwMDIxNzEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7/7gAOQWRvYmUAZMAAAAAB/9sAhAAbGhopHSlBJiZBQi8vL0JHPz4+P0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHAR0pKTQmND8oKD9HPzU/R0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0f/wAARCAAIAAgDASIAAhEBAxEB/8QAWQABAQAAAAAAAAAAAAAAAAAAAAYBAQEAAAAAAAAAAAAAAAAAAAIEEAEBAAMBAAAAAAAAAAAAAAABADECA0ERAAEDBQAAAAAAAAAAAAAAAAARITFBUWESIv/aAAwDAQACEQMRAD8AoOnTV1QTD7JJshP3vSM3P//Z) repeat top left;
29
+ }
30
+
31
+ .debug-grid-16-solid {
32
+ background:white url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzY3MkJEN0U2N0M1MTFFNkIyQkNFMjQwODEwMDIxNzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzY3MkJEN0Y2N0M1MTFFNkIyQkNFMjQwODEwMDIxNzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NjcyQkQ3QzY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NjcyQkQ3RDY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pve6J3kAAAAzSURBVHjaYvz//z8D0UDsMwMjSRoYP5Gq4SPNbRjVMEQ1fCRDg+in/6+J1AJUxsgAEGAA31BAJMS0GYEAAAAASUVORK5CYII=) repeat top left;
33
+ }