jekyll-theme-conscious-sedation 0.0.2

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.
@@ -0,0 +1,45 @@
1
+ table thead,
2
+ table tbody,
3
+ table tfoot {
4
+ border: 1px solid var(--color-light-grey);
5
+ background-color: var(--color-powder);
6
+ }
7
+
8
+ table thead {
9
+ background: var(--color-lighter-grey);
10
+ color: var(--color-font);
11
+ }
12
+
13
+ table tfoot {
14
+ background: var(--color-light-grey);
15
+ color: var(--color-font);
16
+ }
17
+
18
+ table tbody tr:nth-child(even) {
19
+ background-color: var(--color-light-grey);
20
+ }
21
+
22
+ table.unstriped tbody {
23
+ background-color: var(--color-powder);
24
+ }
25
+
26
+ table.unstriped tbody tr {
27
+ border-bottom: 1px solid var(--color-light-grey);
28
+ background-color: var(--color-powder);
29
+ }
30
+
31
+ table.hover thead tr:hover {
32
+ background-color: var(--color-light-grey);
33
+ }
34
+
35
+ table.hover tfoot tr:hover {
36
+ background-color: var(--color-light-grey);
37
+ }
38
+
39
+ table.hover tbody tr:hover {
40
+ background-color: var(--color-lighter-grey);
41
+ }
42
+
43
+ table.hover:not(.unstriped) tr:nth-of-type(even):hover {
44
+ background-color: var(--color-light-grey);
45
+ }
@@ -0,0 +1,43 @@
1
+ .tabs {
2
+ border: 1px solid var(--color-light-grey);
3
+ background: var(--color-powder);
4
+ list-style-type: none;
5
+ }
6
+
7
+ .tabs.primary {
8
+ background: var(--color-blue);
9
+ }
10
+
11
+ .tabs.primary>li>a {
12
+ color: var(--color-powder);
13
+ }
14
+
15
+ .tabs.primary>li>a:hover,
16
+ .tabs.primary>li>a:focus {
17
+ background: var(--color-dark-blue);
18
+ }
19
+
20
+ .tabs-title>a {
21
+ color: var(--color-blue);
22
+ }
23
+
24
+ .tabs-title>a:hover {
25
+ background: var(--color-powder);
26
+ color: var(--color-dark-blue);
27
+ }
28
+
29
+ .tabs-title>a:focus,
30
+ .tabs-title>a[aria-selected='true'] {
31
+ background: var(--color-light-grey);
32
+ color: var(--color-blue);
33
+ }
34
+
35
+ .tabs-content {
36
+ border: 1px solid var(--color-light-grey);
37
+ background: var(--color-powder);
38
+ color: var(--color-font);
39
+ }
40
+
41
+ .tabs-content.vertical {
42
+ border: 1px solid var(--color-light-grey);
43
+ }
@@ -0,0 +1,73 @@
1
+ .tagg {
2
+ padding: 5em;
3
+ }
4
+
5
+ section.tags #tags {
6
+ font-size: .7em;
7
+ margin-top: 40px;
8
+ position: relative
9
+ }
10
+
11
+ section.tags #tags .tag {
12
+ -webkit-column-break-inside: avoid;
13
+ page-break-inside: avoid;
14
+ break-inside: avoid;
15
+ margin-bottom: 2em;
16
+ float: left;
17
+ width: 220px;
18
+ }
19
+
20
+ section.tags #tags .tag h3 {
21
+ padding: 5px 10px;
22
+ }
23
+
24
+ section.tags #tags .tag ul {
25
+ list-style: none;
26
+ padding: 5px;
27
+ background-color: var(--color-light-grey);
28
+ border-radius: 3px;
29
+ }
30
+
31
+ section.tags #tags .tag ul li {
32
+ padding: 5px;
33
+ border-bottom: 1px solid var(--color-lighter-grey);
34
+ }
35
+
36
+ section.tags #tags .tag ul li a {
37
+ color: var(--color-darker-font);
38
+ }
39
+
40
+ section.tags #tags .tag ul li:first-child {
41
+ padding-top: 0
42
+ }
43
+
44
+ section.tags #tags .tag ul li:last-child {
45
+ margin-bottom: 0;
46
+ border-bottom: none;
47
+ padding-bottom: 0;
48
+ }
49
+
50
+ section.tags #cloud {
51
+ text-align: justify;
52
+ padding: 2rem;
53
+ line-height: 2em;
54
+ }
55
+
56
+ section.tags #cloud .small {
57
+ font-size: .8em
58
+ }
59
+
60
+ section.tags #cloud .large {
61
+ font-size: 1.6em
62
+ }
63
+
64
+ section.tags #cloud .huge {
65
+ font-size: 2em
66
+ }
67
+
68
+ section.tags .anchor {
69
+ display: block;
70
+ position: relative;
71
+ top: -90px;
72
+ visibility: hidden
73
+ }
@@ -0,0 +1,24 @@
1
+ .has-tip {
2
+ border-bottom: dotted 1px var(--color-dark-grey);
3
+ }
4
+
5
+ .tooltip {
6
+ background-color: var(--color-font);
7
+ color: var(--color-powder);
8
+ }
9
+
10
+ .tooltip.bottom::before {
11
+ border-color: transparent transparent var(--color-font);
12
+ }
13
+
14
+ .tooltip.top::before {
15
+ border-color: var(--color-font) transparent transparent;
16
+ }
17
+
18
+ .tooltip.left::before {
19
+ border-color: transparent transparent transparent var(--color-font);
20
+ }
21
+
22
+ .tooltip.right::before {
23
+ border-color: transparent var(--color-font) transparent transparent;
24
+ }
@@ -0,0 +1,19 @@
1
+ @charset 'utf-8';
2
+
3
+ // -- <!-- Compressed CSS -->
4
+ @import "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.1/css/foundation.min.css";
5
+ @import '_rouge-github';
6
+ @import '_settings';
7
+ @import '_grid';
8
+ @import '_footer';
9
+ @import '_tags';
10
+ @import '_menu';
11
+ @import '_calloutcard';
12
+ @import '_button';
13
+ @import '_badge';
14
+ @import '_breadcrumbs';
15
+ @import '_forms';
16
+ @import '_pagination';
17
+ @import '_table';
18
+ @import '_tabs';
19
+ @import '_tooltip';
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,8 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @charset 'utf-8';
6
+
7
+ // -- <!-- Compressed CSS -->
8
+ @import 'conscious-sedation';
metadata ADDED
@@ -0,0 +1,191 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-conscious-sedation
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - LavenderGrey askcreative
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.9.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.9.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 2.2.3
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 2.2.3
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-sitemap
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.1.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.1.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-mentions
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 1.2.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 1.2.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: jemoji
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.8.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.8.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: bundler
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.12'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.12'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rake
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '10.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '10.0'
125
+ description:
126
+ email:
127
+ - arashi@tutanota.de
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - LICENSE.txt
133
+ - README.md
134
+ - _includes/article_post.html
135
+ - _includes/articles_main.html
136
+ - _includes/footer.html
137
+ - _includes/google-analytics.html
138
+ - _includes/head.html
139
+ - _includes/header.html
140
+ - _layouts/default.html
141
+ - _layouts/home.html
142
+ - _layouts/page.html
143
+ - _layouts/post.html
144
+ - _sass/_badge.scss
145
+ - _sass/_breadcrumbs.scss
146
+ - _sass/_button.scss
147
+ - _sass/_calloutcard.scss
148
+ - _sass/_footer.scss
149
+ - _sass/_forms.scss
150
+ - _sass/_grid.scss
151
+ - _sass/_menu.scss
152
+ - _sass/_pagination.scss
153
+ - _sass/_rouge-github.scss
154
+ - _sass/_settings.scss
155
+ - _sass/_table.scss
156
+ - _sass/_tabs.scss
157
+ - _sass/_tags.scss
158
+ - _sass/_tooltip.scss
159
+ - _sass/conscious-sedation.scss
160
+ - assets/SoftGrunge1.jpg
161
+ - assets/SoftGrunge2.jpg
162
+ - assets/SoftGrunge3.jpg
163
+ - assets/SoftGrunge4.jpg
164
+ - assets/SoftGrunge5.jpg
165
+ - assets/blackkit.png
166
+ - assets/main.scss
167
+ homepage: https://github.com/LavenderGrey/conscious-sedation
168
+ licenses:
169
+ - MIT
170
+ metadata: {}
171
+ post_install_message:
172
+ rdoc_options: []
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ required_rubygems_version: !ruby/object:Gem::Requirement
181
+ requirements:
182
+ - - ">="
183
+ - !ruby/object:Gem::Version
184
+ version: '0'
185
+ requirements: []
186
+ rubyforge_project:
187
+ rubygems_version: 2.2.2
188
+ signing_key:
189
+ specification_version: 4
190
+ summary: '["An effectual yet sparse Jekyll theme."]'
191
+ test_files: []