dasheets 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Njk2ODJjYWYyMzdjOTdiOGFiYzJjMzMzNjYyZmMxODY2OTVlNmVmZQ==
4
+ N2UxYzI3NWUyNDU4NjNlYWUwN2ZmM2U1YzcyODQ0ZGFiYTBkMDlmOQ==
5
5
  data.tar.gz: !binary |-
6
- Y2M4MDIxNGRjOWFlNzQwYjQwYjQ0NDc1MzM1YmUzMGU3MmM0NzliMg==
6
+ M2I3NmQwMGRhZWE0MzllZDQwMjRkMzQwMDQ1ZGJmMjNhYzFkZWUzZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MTg5YzdlYjhhNDhkM2M2ZmM5MzVlM2Q2ZGI5ZTQ0MmY2NTZmNGFlN2UwYTc4
10
- ZTY2OTAwZTZkZDc0NTYxNDI0NTBjOTIxZmNhMzM1NTBiNzAwNGU5NjlhMjEx
11
- NDk0OWVkZjMyMmRjMjUzODA2ZmYyMTNjYjg3YzdiYzRiMzY1OWM=
9
+ MWM0NGVkNzdiYmJlNDZmM2Y2MTJiYjUyZjMwMGMxMGRiNWYyODAzNTFkODgz
10
+ Nzc2ZTQ5NGFhYTNhNTNkYjRhMjg1NDEwNDg3YWJhYzBiYjg4ZTlmNzE3ZTM4
11
+ ODU3ZTc5ZWI0YjgyMjcwZTI1MDFjYjFkNDdjNTg3MDNhZDA2ZjM=
12
12
  data.tar.gz: !binary |-
13
- YTQ1MzdjYTVhNGY2OGIxODUwZjkzMDQxY2RmNmU4MTFiYzNkY2JiZWExMDY0
14
- YmUzYWI4MDRmODA2ZGQ4NDk1ZTM5OTg5ZmIyMzIwNDU3MjgxY2EyZjQ4YzVm
15
- NWU3YTM0ZjdlZTE2MTg2YzA1YjdhYTNmNmMwNWU3MjM4MDM1YWY=
13
+ MDI3ZWI2M2EyZTJjNzBhOWU1YTk5NGE3NWY2ZTYwZDEyNmIwMmFlN2ZhMTUx
14
+ MjBhZjA2MGFmOWQ3NDYwYTY3ZjkzOTU4NmE0Nzk3YmU1NGEyMGEzYWM1OTdk
15
+ NDRiNTMxOTAxMzU5ZTQ1OGY4YjY0YWZhYTM3YjYyMDJmODNhOGY=
@@ -30,20 +30,26 @@ footer {
30
30
  footer a {
31
31
  color: #efefef; }
32
32
 
33
+ section.notes {
34
+ margin-top: 1em; }
35
+ section.notes h2 {
36
+ color: #666666;
37
+ font-size: 1.5em; }
38
+
33
39
  article {
34
40
  margin: 1em; }
35
41
 
36
- section {
42
+ section.category {
37
43
  border: 2px solid #666666;
38
44
  border-radius: 10px;
39
45
  background-color: #666666;
40
46
  margin: .5em 0;
41
- overflow: hidden; }
42
-
43
- h2 {
44
- color: white;
45
- font-size: 1.5em;
46
- text-align: center; }
47
+ overflow: hidden;
48
+ padding-bottom: 5px; }
49
+ section.category h2 {
50
+ color: white;
51
+ font-size: 1.5em;
52
+ text-align: center; }
47
53
 
48
54
  table {
49
55
  background-color: white;
@@ -40,24 +40,31 @@ footer {
40
40
  color: $light_gray;
41
41
  }
42
42
  }
43
-
44
43
  ////////////////////////////////////////////////////////////////////////////////
45
-
44
+ // notes
45
+ section.notes {
46
+ margin-top: 1em;
47
+ h2 {
48
+ color: $dark_gray;
49
+ font-size: 1.5em;
50
+ }
51
+ }
52
+ ////////////////////////////////////////////////////////////////////////////////
46
53
  article {
47
54
  margin: 1em;
48
55
  }
49
-
50
- section {
56
+ section.category {
51
57
  border: 2px solid $dark_gray;
52
58
  border-radius: 10px;
53
59
  background-color: $dark_gray;
54
60
  margin: .5em 0;
55
61
  overflow: hidden;
56
- }
57
- h2 {
58
- color: $white;
59
- font-size: 1.5em;
60
- text-align: center;
62
+ h2 {
63
+ color: $white;
64
+ font-size: 1.5em;
65
+ text-align: center;
66
+ }
67
+ padding-bottom: 5px;
61
68
  }
62
69
  table {
63
70
  background-color: $white;
@@ -14,7 +14,7 @@
14
14
  %p= introduction
15
15
 
16
16
  - categories.each do |category|
17
- %section
17
+ %section.category
18
18
  %h2= category.id
19
19
  %table
20
20
  - category.entries.each_with_index do |entry, index|
@@ -25,8 +25,9 @@
25
25
  .name= entry.name
26
26
  .notes= entry.notes
27
27
  - if notes
28
- %h2 Notes
29
- = notes
28
+ %section.notes
29
+ %h2 Notes
30
+ = notes
30
31
  %footer
31
32
  Generated with
32
33
  %a{href: 'https://github.com/Nix-wie-weg/dasheets'} Dasheets
@@ -1,3 +1,3 @@
1
1
  module Dasheets
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dasheets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Dütsch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-08 00:00:00.000000000 Z
11
+ date: 2013-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler