analytics-link 0.1.0

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,71 @@
1
+ // Page
2
+ .page {
3
+ margin-bottom: 20px;
4
+ }
5
+
6
+ .page-image-box {
7
+ background: $black;
8
+ &.reveal-in {
9
+ .page-image {
10
+ opacity: 1;
11
+ }
12
+ }
13
+ }
14
+
15
+ .page-image {
16
+ min-height: 230px;
17
+ margin-bottom: 30px;
18
+ background-size: cover;
19
+ background-position: center;
20
+ background-repeat: no-repeat;
21
+ background-color: $black;
22
+ box-shadow: 0 9px 18px 0 rgba(0,0,0,0.25);
23
+ opacity: 0;
24
+ transition: all 1s cubic-bezier(0.6, 0.3, 0, 1);
25
+ &:after {
26
+ content: "";
27
+ display: table;
28
+ width: 100%;
29
+ padding-top: 50%;
30
+ }
31
+ }
32
+
33
+ .page-content {
34
+ padding: 40px 15px;
35
+ box-shadow: 0 9px 18px 0 rgba(0,0,0,0.25);
36
+ background: rgba($blue-darken, .95);
37
+ }
38
+
39
+ .page-head {
40
+ padding-bottom: 30px;
41
+ .page-title {
42
+ font-size: 28px;
43
+ text-align: center;
44
+ font-weight: normal;
45
+ line-height: 28px;
46
+ margin-bottom: 0;
47
+ }
48
+ }
49
+
50
+ .page-head, .page-body {
51
+ margin-bottom: 20px;
52
+ border-bottom: 1px solid $border-color;
53
+ }
54
+
55
+ .page-body {
56
+ padding-bottom: 20px;
57
+ }
58
+
59
+ @media only screen and (min-width: 576px) {
60
+ .page-content {
61
+ padding: 40px;
62
+ }
63
+
64
+ .page-head {
65
+ .page-title {
66
+ font-size: 43px;
67
+ line-height: 43px;
68
+ margin-bottom: 10px;
69
+ }
70
+ }
71
+ }
@@ -0,0 +1,190 @@
1
+ // Post
2
+ .post {
3
+ margin-bottom: 20px;
4
+ }
5
+
6
+ .post-image-box {
7
+ background: $black;
8
+ &.reveal-in {
9
+ .post-image {
10
+ opacity: 1;
11
+ }
12
+ }
13
+ }
14
+
15
+ .post-image {
16
+ min-height: 430px;
17
+ margin-bottom: 30px;
18
+ background-size: cover;
19
+ background-position: center;
20
+ background-repeat: no-repeat;
21
+ background-color: $black;
22
+ box-shadow: 0 9px 18px 0 rgba(0,0,0,0.25);
23
+ position: relative;
24
+ opacity: 0;
25
+ transition: all 1s cubic-bezier(0.6, 0.3, 0, 1);
26
+ &:after {
27
+ content: "";
28
+ display: table;
29
+ width: 100%;
30
+ padding-top: 50%;
31
+ }
32
+ }
33
+
34
+ .post-head, .post-content {
35
+ background: rgba($blue-darken, .95);
36
+ }
37
+
38
+ .post-content {
39
+ padding: 40px 15px;
40
+ box-shadow: 0 9px 18px 0 rgba(0,0,0,0.25);
41
+ }
42
+
43
+ .post-head, .post-body {
44
+ margin-bottom: 20px;
45
+ border-bottom: 1px solid $border-color;
46
+ }
47
+
48
+ .post-head {
49
+ padding-bottom: 30px;
50
+ .post-tag {
51
+ margin-bottom: 20px;
52
+ text-align: center;
53
+ .tag {
54
+ display: inline-block;
55
+ padding: 5px 15px;
56
+ margin-right: 5px;
57
+ font-size: 12px;
58
+ line-height: 18px;
59
+ font-weight: bold;
60
+ border: 1px solid $primary-color;
61
+ text-transform: capitalize;
62
+ color: $primary-color;
63
+ transition: $global-transition;
64
+ &:last-child {
65
+ margin-right: 0;
66
+ }
67
+ &:hover {
68
+ background: $primary-color;
69
+ color: $white;
70
+ }
71
+ }
72
+ }
73
+ .post-title {
74
+ font-size: 28px;
75
+ text-align: center;
76
+ font-weight: normal;
77
+ line-height: 28px;
78
+ margin-bottom: 5px;
79
+ }
80
+ .post-time {
81
+ text-align: center;
82
+ span {
83
+ font-size: 12px;
84
+ }
85
+ }
86
+ }
87
+
88
+ .post-body {
89
+ padding-bottom: 20px;
90
+ }
91
+
92
+ .post-share {
93
+ padding: 10px 0;
94
+ .share-item {
95
+ display: inline-block;
96
+ padding-right: 15px;
97
+ a {
98
+ color: $link-color;
99
+ &:hover {
100
+ color: $link-color-hover;
101
+ }
102
+ i.ion {
103
+ font-size: 20px;
104
+ }
105
+ }
106
+ }
107
+ }
108
+
109
+ // POST NAVIGATION
110
+ .post-navigation {
111
+ display: flex;
112
+ flex-wrap: wrap;
113
+ margin-top: 30px;
114
+ }
115
+
116
+ .prev, .next {
117
+ flex-basis: 100%;
118
+ padding: 15px;
119
+ background-color: $link-color;
120
+ color: $text;
121
+ &:hover {
122
+ background: $link-color-hover;
123
+ color: $white;
124
+ .post-nav-title {
125
+ color: $primary-color;
126
+ transition: $global-transition;
127
+ }
128
+ }
129
+ .post-nav-arrow {
130
+ font-size: 14px;
131
+ }
132
+ .post-nav-title {
133
+ font-size: 18px;
134
+ color: $text;
135
+ transition: $global-transition;
136
+ }
137
+ }
138
+
139
+ .prev {
140
+ margin-bottom: 10px;
141
+ }
142
+
143
+ .prev, .next {
144
+ text-align: center;
145
+ }
146
+
147
+ .disabled {
148
+ color: rgba(255,249,252,0.5);
149
+ pointer-events: none;
150
+ cursor: not-allowed;
151
+ }
152
+
153
+ // COMMENTS SECTION
154
+ .comments {
155
+ padding: 0 15px;
156
+ background: $blue-darken;
157
+ }
158
+
159
+ // MEDIA
160
+ @media only screen and (min-width: 576px) {
161
+ .post-content {
162
+ padding: 40px;
163
+ }
164
+ .post-head {
165
+ .post-title {
166
+ font-size: 43px;
167
+ line-height: 43px;
168
+ margin-bottom: 10px;
169
+ }
170
+ }
171
+ .post-navigation {
172
+ display: flex;
173
+ justify-content: space-between;
174
+ flex-wrap: nowrap;
175
+ }
176
+ .prev, .next {
177
+ flex-basis: 48%;
178
+ padding: 20px;
179
+ .post-nav-title {
180
+ font-size: 21px;
181
+ }
182
+ }
183
+ .prev {
184
+ text-align: left;
185
+ margin-bottom: 0;
186
+ }
187
+ .next {
188
+ text-align: right;
189
+ }
190
+ }
@@ -0,0 +1,32 @@
1
+ // Tags
2
+ .tags-list {
3
+ display: flex;
4
+ flex-wrap: wrap;
5
+ margin: 40px 0;
6
+ padding: 0;
7
+ list-style: none;
8
+ .tags-item {
9
+ margin: 5px;
10
+ }
11
+ .tags-link {
12
+ display: inline-block;
13
+ padding: 7px 12px;
14
+ font-size: 14px;
15
+ border-radius: 4px;
16
+ color: $text;
17
+ font-weight: 700;
18
+ background: $blue-black;
19
+ &:hover {
20
+ color: $white;
21
+ background: $primary-color;
22
+ }
23
+ }
24
+ }
25
+
26
+ .tags-title {
27
+ margin-bottom: 5px;
28
+ }
29
+
30
+ .tags-group {
31
+ margin-bottom: 30px;
32
+ }
@@ -0,0 +1,85 @@
1
+ // Text Alignment
2
+ .text-left {
3
+ text-align: left;
4
+ }
5
+
6
+ .text-right {
7
+ text-align: right;
8
+ }
9
+
10
+ .text-center {
11
+ text-align: center;
12
+ }
13
+
14
+ .text-justify {
15
+ text-align: justify;
16
+ }
17
+
18
+
19
+ // Display
20
+ .block {
21
+ display: block;
22
+ }
23
+
24
+ .inline-block {
25
+ display: inline-block;
26
+ }
27
+
28
+ .inline {
29
+ display: inline;
30
+ }
31
+
32
+
33
+ // Vertical Center
34
+ .vertical-center {
35
+ display: flex;
36
+ align-items: center;
37
+ justify-content: center;
38
+ }
39
+
40
+
41
+ // Display State
42
+ .show {
43
+ display: block !important;
44
+ }
45
+
46
+ .hide {
47
+ display: none !important;
48
+ }
49
+
50
+ .invisible {
51
+ visibility: hidden;
52
+ }
53
+
54
+
55
+ // Floats
56
+ .float-left {
57
+ float: left;
58
+ }
59
+
60
+ .float-right {
61
+ float: right;
62
+ }
63
+
64
+
65
+ // Padding
66
+ .no-padding {
67
+ padding: 0;
68
+ }
69
+
70
+
71
+ // Margins
72
+ .no-margin {
73
+ margin: 0;
74
+ }
75
+
76
+
77
+ // Clearfix
78
+ .clearfix {
79
+ @include clearfix();
80
+ }
81
+
82
+ // Lists Reset
83
+ .list-reset {
84
+ @include list-reset();
85
+ }
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: analytics-link
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Vidhya
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-05-29 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: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
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.13'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.13'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-paginate
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.1.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.1.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description:
70
+ email:
71
+ - vidhyav656@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - README.md
77
+ - _includes/footer-end.html
78
+ - _includes/footer.html
79
+ - _includes/head.html
80
+ - _includes/header.html
81
+ - _includes/pagination.html
82
+ - _includes/post-card.html
83
+ - _includes/read-time.html
84
+ - _includes/social-share.html
85
+ - _layouts/default.html
86
+ - _layouts/page.html
87
+ - _layouts/post.html
88
+ - _sass/0-settings/_colors.scss
89
+ - _sass/0-settings/_global.scss
90
+ - _sass/1-tools/_grid.scss
91
+ - _sass/1-tools/_mixins.scss
92
+ - _sass/1-tools/_normalize.scss
93
+ - _sass/1-tools/_reset.scss
94
+ - _sass/1-tools/_shared.scss
95
+ - _sass/1-tools/_syntax-highlighting.scss
96
+ - _sass/2-base/_base.scss
97
+ - _sass/3-modules/_buttons.scss
98
+ - _sass/3-modules/_footer.scss
99
+ - _sass/3-modules/_pagination.scss
100
+ - _sass/4-layouts/_home.scss
101
+ - _sass/4-layouts/_page.scss
102
+ - _sass/4-layouts/_post.scss
103
+ - _sass/4-layouts/_tags.scss
104
+ - _sass/5-trumps/_helpers.scss
105
+ homepage: https://github.com/analytics-link/analytics-link.github.io
106
+ licenses:
107
+ - MIT
108
+ metadata:
109
+ plugin_type: theme
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubygems_version: 3.1.2
126
+ signing_key:
127
+ specification_version: 4
128
+ summary: A beautiful, minimal theme for Jekyll.
129
+ test_files: []