jursdocs 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,89 @@
1
+ .h1,
2
+ h1 {
3
+ font-size: 3.375em;
4
+ line-height: 1.33333333em;
5
+ margin-top: 0.44444444em;
6
+ margin-bottom: 0.88888888em;
7
+ }
8
+
9
+ .h2,
10
+ h2 {
11
+ font-size: 2.25em;
12
+ line-height: 1.33333333em;
13
+ margin-top: 0.66666667em;
14
+ margin-bottom: 0.66666667em;
15
+ }
16
+
17
+ .h3,
18
+ h3 {
19
+ font-size: 1.5em;
20
+ line-height: 1em;
21
+ margin-top: 1em;
22
+ margin-bottom: 0;
23
+ }
24
+
25
+ .h4,
26
+ h4 {
27
+ font-size: 1em;
28
+ line-height: 1.5;
29
+ margin-top: 1.5em;
30
+ margin-bottom: 0;
31
+ }
32
+
33
+ .h5,
34
+ h5 {
35
+ font-size: 1em;
36
+ line-height: 1.5;
37
+ margin-top: 1.5em;
38
+ margin-bottom: 0;
39
+ }
40
+
41
+ blockquote,
42
+ ol,
43
+ p,
44
+ pre,
45
+ table,
46
+ ul {
47
+ margin-top: 0;
48
+ margin-bottom: 1.5em;
49
+ }
50
+
51
+ ol ol,
52
+ ol ul,
53
+ ul ol,
54
+ ul ul {
55
+ margin-top: 0;
56
+ margin-bottom: 0;
57
+ }
58
+
59
+ /* Let's make sure all's aligned */
60
+ .hr,
61
+ hr {
62
+ border: 1px solid;
63
+ margin: -1px 0;
64
+ }
65
+
66
+ a,
67
+ b,
68
+ code,
69
+ em,
70
+ i,
71
+ small,
72
+ strong {
73
+ line-height: 0;
74
+ }
75
+
76
+ sub,
77
+ sup {
78
+ line-height: 0;
79
+ position: relative;
80
+ vertical-align: baseline;
81
+ }
82
+
83
+ sup {
84
+ top: -0.5em;
85
+ }
86
+
87
+ sub {
88
+ bottom: -0.25em;
89
+ }
Binary file
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><rect id="Artboard2" x="-526" y="-34" width="678" height="168" style="fill:none;"/><g id="advanced"><path d="M0.401,49.483l0,-2.871l26.817,-16.653l3.273,5.168l-20.902,12.633l20.902,12.347l-3.273,5.168l-26.817,-15.792Z" style="fill:#404040;fill-rule:nonzero;"/><path d="M57.423,25.537l5.628,2.527l-20.501,46.399l-5.627,-2.642l20.5,-46.284Z" style="fill:#404040;fill-rule:nonzero;"/><path d="M72.583,65.275l-3.273,-5.168l20.903,-12.347l-20.903,-12.633l3.273,-5.168l26.818,16.653l0,2.871l-26.818,15.792Z" style="fill:#404040;fill-rule:nonzero;"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><rect id="Artboard2" x="-175" y="-34" width="678" height="168" style="fill:none;"/><g id="edit"><path d="M44.586,77.49l-18.059,-10.426l24.617,-42.637l18.058,10.426l-24.616,42.637Zm26.354,-45.647l-18.058,-10.426l5.005,-8.669c0.594,-1.029 1.912,-1.383 2.941,-0.788l14.329,8.273c1.029,0.594 1.382,1.911 0.788,2.941l-5.005,8.669Z" style="fill:#404040;"/><path d="M26.289,88.329l-1.499,-18.255l18.058,10.426l-16.559,7.829Z" style="fill:#404040;"/></g></svg>
@@ -0,0 +1,39 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ @charset "utf-8";
5
+
6
+ // Our variables
7
+ $base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ $base-font-size: 16px;
9
+ $base-font-weight: 400;
10
+ $small-font-size: $base-font-size * 0.875;
11
+ $base-line-height: 1.5;
12
+
13
+ $spacing-unit: 30px;
14
+
15
+ $text-color: #111;
16
+ $background-color: #fdfdfd;
17
+ $brand-color: #2a7ae2;
18
+
19
+ $grey-color: #828282;
20
+ $grey-color-light: lighten($grey-color, 40%);
21
+ $grey-color-dark: darken($grey-color, 25%);
22
+
23
+ // Width of the content area
24
+ $content-width: 800px;
25
+
26
+ $on-palm: 600px;
27
+ $on-laptop: 800px;
28
+
29
+ // Minima also includes a mixin for defining media queries.
30
+ // Use media queries like this:
31
+ // @include media-query($on-palm) {
32
+ // .wrapper {
33
+ // padding-right: $spacing-unit / 2;
34
+ // padding-left: $spacing-unit / 2;
35
+ // }
36
+ // }
37
+
38
+ // Import partials from the `minima` theme.
39
+ @import "jursdocs";
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><rect id="Artboard2" x="-28" y="-34" width="678" height="168" style="fill:none;"/><g id="new"><path d="M67.172,22.788l-4.921,24.463l21.745,12.24l-24.787,2.879l-4.921,24.464l-10.398,-22.684l-24.787,2.879l18.361,-16.899l-10.398,-22.684l21.745,12.24l18.361,-16.898Z" style="fill:#404040;"/><path d="M81.547,72.392l-0.574,6.429l5.937,2.532l-6.291,1.441l-0.573,6.429l-3.316,-5.538l-6.291,1.441l4.243,-4.864l-3.315,-5.538l5.937,2.532l4.243,-4.864Z" style="fill:#404040;"/><path d="M45.231,7.989l2.401,5.991l6.44,-0.432l-4.956,4.135l2.401,5.992l-5.464,-3.436l-4.956,4.135l1.579,-6.259l-5.464,-3.436l6.44,-0.432l1.579,-6.258Z" style="fill:#404040;"/><path d="M85.37,35.292l-0.275,3.075l2.84,1.211l-3.009,0.689l-0.274,3.075l-1.586,-2.649l-3.009,0.689l2.029,-2.326l-1.585,-2.649l2.839,1.211l2.03,-2.326Z" style="fill:#404040;"/><path d="M80.007,11.777l2.399,1.943l2.589,-1.682l-1.107,2.882l2.4,1.943l-3.083,-0.161l-1.107,2.882l-0.799,-2.982l-3.083,-0.162l2.589,-1.681l-0.798,-2.982Z" style="fill:#404040;"/><path d="M13.619,19.737l2.782,1.337l2.132,-2.233l-0.412,3.06l2.783,1.337l-3.037,0.554l-0.412,3.059l-1.465,-2.717l-3.038,0.554l2.132,-2.233l-1.465,-2.718Z" style="fill:#404040;"/><path d="M23.059,48.51l-2.929,0.974l0.021,3.088l-1.832,-2.485l-2.929,0.974l1.797,-2.51l-1.832,-2.485l2.943,0.934l1.797,-2.511l0.021,3.087l2.943,0.934Z" style="fill:#404040;"/><path d="M35.611,80.559l1.541,2.675l3.021,-0.64l-2.068,2.293l1.542,2.674l-2.82,-1.257l-2.067,2.292l0.325,-3.07l-2.82,-1.257l3.021,-0.64l0.325,-3.07Z" style="fill:#404040;"/><path d="M17.072,85.06l-0.237,2.655l2.452,1.046l-2.599,0.595l-0.236,2.655l-1.369,-2.287l-2.599,0.595l1.753,-2.009l-1.369,-2.287l2.451,1.046l1.753,-2.009Z" style="fill:#404040;"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><rect id="Artboard2" x="-357" y="-34" width="678" height="168" style="fill:none;"/><g id="tools"><path d="M8.045,19.357c5.069,-4.538 12.517,-5.977 19.151,-3.07c5.787,2.537 9.562,7.773 10.496,13.585l53.321,22.749c4.894,2.145 7.126,7.859 4.981,12.753c-2.145,4.894 -7.86,7.126 -12.754,4.981l-53.321,-22.748c-4.907,3.252 -11.315,4.024 -17.103,1.488c-6.633,-2.908 -10.623,-9.36 -10.721,-16.163l15.798,6.924c1.873,0.821 4.06,-0.033 4.881,-1.906l2.975,-6.787c0.821,-1.873 -0.033,-4.06 -1.906,-4.881l-15.798,-6.925Z" style="fill:#404040;"/><path d="M31.922,53.051l7.688,3.185c0.273,0.626 0.558,1.248 0.854,1.865c0.416,0.867 0.854,1.725 1.315,2.57c0.383,0.703 0.781,1.398 1.196,2.083c2.85,4.713 6.47,9.007 10.892,12.319c0.747,0.559 1.516,1.09 2.305,1.588c0.858,0.543 1.741,1.047 2.644,1.51c0.491,0.251 0.987,0.488 1.489,0.717l0.07,0.031c0.492,-0.222 0.978,-0.453 1.459,-0.697c0.907,-0.461 1.793,-0.964 2.655,-1.504c0.792,-0.498 1.564,-1.027 2.315,-1.586c2.086,-1.553 3.995,-3.325 5.729,-5.258l5.495,2.276c0.125,0.054 0.251,0.107 0.377,0.157c-2.065,2.507 -4.37,4.814 -6.914,6.839c-2.37,1.886 -4.942,3.518 -7.671,4.832c-0.59,0.285 -1.188,0.554 -1.791,0.808c-0.087,0.037 -0.174,0.073 -0.261,0.109c-0.155,0.064 -0.335,0.14 -0.496,0.19c-0.33,0.103 -0.678,0.148 -1.024,0.134c-0.259,-0.011 -0.517,-0.055 -0.765,-0.132c-0.135,-0.042 -0.245,-0.087 -0.373,-0.139c-0.198,-0.082 -0.32,-0.132 -0.517,-0.216c-0.602,-0.256 -1.196,-0.527 -1.784,-0.812c-2.718,-1.321 -5.279,-2.958 -7.638,-4.845c-4.283,-3.425 -7.882,-7.653 -10.802,-12.284c-1.941,-3.079 -3.589,-6.341 -4.959,-9.713c-0.539,-1.326 -1.035,-2.669 -1.488,-4.027Zm9.396,-26.467c0.513,-0.088 1.024,-0.186 1.532,-0.298c0.8,-0.176 1.593,-0.383 2.375,-0.625c1.15,-0.355 2.275,-0.785 3.374,-1.273c1.507,-0.669 2.964,-1.443 4.392,-2.265c1.951,-1.124 3.849,-2.339 5.736,-3.567l0.231,-0.137c0.215,-0.102 0.266,-0.135 0.494,-0.208c0.255,-0.082 0.521,-0.13 0.789,-0.142c0.089,-0.004 0.179,0 0.268,0c0.089,0.008 0.178,0.016 0.267,0.024c0.234,0.042 0.296,0.045 0.523,0.118c0.17,0.055 0.335,0.125 0.493,0.208c0.079,0.042 0.154,0.091 0.231,0.137c0.335,0.217 0.669,0.435 1.004,0.651c1.729,1.112 3.47,2.207 5.261,3.217c1.329,0.75 2.687,1.453 4.087,2.063c1.027,0.447 2.075,0.842 3.145,1.172c1.076,0.333 2.171,0.601 3.278,0.811c1.53,0.29 3.079,0.473 4.631,0.596c1.82,0.144 3.646,0.204 5.472,0.235l0.296,0.004c0.089,0.005 0.178,0.006 0.266,0.016c0.266,0.027 0.528,0.09 0.777,0.186c0.249,0.096 0.485,0.225 0.701,0.383c0.576,0.423 0.99,1.049 1.153,1.745c0.074,0.316 0.082,0.639 0.097,0.961c0.021,0.444 0.036,0.889 0.044,1.334c0.042,2.169 -0.055,4.34 -0.266,6.499c-0.239,2.456 -0.626,4.897 -1.143,7.31c-0.108,0.503 -0.221,1.004 -0.341,1.505c-0.374,-0.213 -0.758,-0.407 -1.15,-0.588l-0.19,-0.085l-4.295,-1.779c0.089,-0.405 0.174,-0.811 0.255,-1.218c0.675,-3.392 1.065,-6.842 1.098,-10.301c-0.287,-0.011 -0.574,-0.024 -0.861,-0.037c-2.184,-0.106 -4.366,-0.284 -6.526,-0.632c-1.938,-0.311 -3.853,-0.761 -5.717,-1.377c-1.063,-0.352 -2.108,-0.755 -3.135,-1.202c-1.667,-0.726 -3.282,-1.565 -4.862,-2.463c-1.604,-0.912 -3.172,-1.886 -4.727,-2.879c-0.129,0.083 -0.258,0.165 -0.387,0.248c-2.749,1.744 -5.55,3.432 -8.515,4.787c-0.486,0.223 -0.977,0.436 -1.472,0.638l-8.626,-3.573l-0.022,-0.081l-0.035,-0.118Z" style="fill:#404040;"/></g></svg>
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jursdocs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rasmus Jürs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-22 00:00:00.000000000 Z
11
+ date: 2017-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.12'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.12'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '10.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
55
  description: Jekyll theme for documentation of web based interfaces. There are features
@@ -59,7 +59,37 @@ email:
59
59
  executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
- files: []
62
+ files:
63
+ - LICENSE.txt
64
+ - README.md
65
+ - _includes/disqus_comments.html
66
+ - _includes/footer.html
67
+ - _includes/google-analytics.html
68
+ - _includes/head.html
69
+ - _includes/header.html
70
+ - _includes/icon-facebook.html
71
+ - _includes/icon-facebook.svg
72
+ - _includes/icon-github.html
73
+ - _includes/icon-github.svg
74
+ - _includes/icon-twitter.html
75
+ - _includes/icon-twitter.svg
76
+ - _includes/sitemap.html
77
+ - _includes/subpagelist.html
78
+ - _layouts/default.html
79
+ - _layouts/home.html
80
+ - _layouts/page.html
81
+ - _layouts/post.html
82
+ - _sass/jursdocs.scss
83
+ - _sass/jursdocs/_base.scss
84
+ - _sass/jursdocs/_syntax-highlighting.scss
85
+ - _sass/jursdocs/print.scss
86
+ - _sass/jursdocs/typography.scss
87
+ - assets/HNCK4011.jpg
88
+ - assets/advanced.svg
89
+ - assets/edit.svg
90
+ - assets/main.scss
91
+ - assets/new.svg
92
+ - assets/tools.svg
63
93
  homepage: http://jurs.me
64
94
  licenses:
65
95
  - MIT
@@ -70,17 +100,17 @@ require_paths:
70
100
  - lib
71
101
  required_ruby_version: !ruby/object:Gem::Requirement
72
102
  requirements:
73
- - - '>='
103
+ - - ">="
74
104
  - !ruby/object:Gem::Version
75
105
  version: '0'
76
106
  required_rubygems_version: !ruby/object:Gem::Requirement
77
107
  requirements:
78
- - - '>='
108
+ - - ">="
79
109
  - !ruby/object:Gem::Version
80
110
  version: '0'
81
111
  requirements: []
82
112
  rubyforge_project:
83
- rubygems_version: 2.0.14.1
113
+ rubygems_version: 2.6.9
84
114
  signing_key:
85
115
  specification_version: 4
86
116
  summary: Jekyll theme for documentation of web based interfaces.