analytics-link 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,213 @@
1
+ // Body
2
+ $base-font-size: 16px;
3
+ $base-font-style: normal;
4
+ $base-font-variant: normal;
5
+ $base-font-weight: normal;
6
+ $base-font-family: 'Nunito', sans-serif;
7
+ $base-line-height: 28px;
8
+
9
+ *, *::after, *::before {
10
+ box-sizing: border-box;
11
+ }
12
+
13
+ body {
14
+ font-family: $base-font-family;
15
+ font-size: $base-font-size;
16
+ line-height: $base-line-height;
17
+ color: $body-color;
18
+ background: $background;
19
+ overflow-x: hidden;
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ input, textarea {
23
+ border: $border-color 1px solid;
24
+ outline: none;
25
+ &:focus:required:invalid {
26
+ border-color: $danger;
27
+ }
28
+ &:required:valid {
29
+ border-color: $success;
30
+ }
31
+ }
32
+ }
33
+
34
+ ::placeholder {
35
+ color: #666;
36
+ }
37
+
38
+ *::selection {
39
+ color: $white;
40
+ background-color: $primary-color;
41
+ }
42
+
43
+
44
+ // Headings
45
+ $heading-font-weight: 700;
46
+ $heading-font-family: 'Nunito', -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Arial, sans-serif;
47
+
48
+ $font-size-h1: 36px;
49
+ $font-size-h2: 28px;
50
+ $font-size-h3: 24px;
51
+ $font-size-h4: 20px;
52
+ $font-size-h5: 18px;
53
+ $font-size-h6: 16px;
54
+
55
+ $heading-line-height: 1.2;
56
+
57
+ h1,
58
+ h2,
59
+ h3,
60
+ h4,
61
+ h5,
62
+ h6 {
63
+ line-height: initial;
64
+ }
65
+
66
+ h1 {
67
+ font-size: $font-size-h1;
68
+ }
69
+
70
+ h2 {
71
+ font-size: $font-size-h2;
72
+ }
73
+
74
+ h3 {
75
+ font-size: $font-size-h3;
76
+ }
77
+
78
+ h4 {
79
+ font-size: $font-size-h4;
80
+ }
81
+
82
+ h5 {
83
+ font-size: $font-size-h5;
84
+ }
85
+
86
+ h6 {
87
+ font-size: $font-size-h6;
88
+ }
89
+
90
+
91
+ // Blockquote
92
+ blockquote {
93
+ padding-left: $base-spacing-unit;
94
+ border-left: 3px solid $primary-color;
95
+ font-style: normal;
96
+ }
97
+
98
+
99
+ // Pre
100
+ pre {
101
+ overflow: auto;
102
+ padding: 15px;
103
+ margin-bottom: 0;
104
+ font-size: 14px;
105
+ white-space: pre-wrap;
106
+ word-wrap: break-word;
107
+ word-break: break-all;
108
+ }
109
+
110
+
111
+ // Images
112
+ img {
113
+ max-width: 100%;
114
+ height: auto;
115
+ vertical-align: middle;
116
+ &+em {
117
+ text-align: center;
118
+ display: block;
119
+ margin-top: 10px;
120
+ font-weight: normal;
121
+ font-size: 16px;
122
+ color: $gray-blue;
123
+ }
124
+ }
125
+
126
+
127
+ // Links
128
+ a {
129
+ text-decoration: none;
130
+ color: $link-color;
131
+ transition: $global-transition;
132
+
133
+ &:hover {
134
+ color: $link-color-hover;
135
+ }
136
+ }
137
+
138
+ // Hr
139
+ hr {
140
+ display: block;
141
+ height: 2px;
142
+ padding: 0;
143
+ margin: 30px 0;
144
+ line-height: 0;
145
+ border: 0;
146
+ background-color: $border-color;
147
+ }
148
+
149
+
150
+ // Blockquote
151
+ blockquote {
152
+ padding: 15px 15px 15px 30px;
153
+ font-size: 18px;
154
+ font-style: normal;
155
+ border-left: 4px solid $primary-color;
156
+ p {
157
+ margin-bottom: 0;
158
+ }
159
+ }
160
+
161
+
162
+ // Pre
163
+ pre {
164
+ overflow: auto;
165
+ padding: 15px;
166
+ margin-bottom: 0;
167
+ font-size: 14px;
168
+ white-space: pre-wrap;
169
+ word-wrap: break-word;
170
+ word-break: break-all;
171
+ }
172
+
173
+ // Table
174
+ .table-container {
175
+ max-width: 100%;
176
+ overflow-x: auto;
177
+ }
178
+
179
+ table {
180
+ font-size: 12px;
181
+ color:$black;
182
+ width: 100%;
183
+ border-width: 1px;
184
+ border-color: $gray-blue;
185
+ border-collapse: collapse;
186
+ }
187
+
188
+ table th {
189
+ padding: 8px;
190
+ font-size: 16px;
191
+ text-align: left;
192
+ border: 1px solid $gray-blue;
193
+ color: $white;
194
+ background-color: $primary-color;
195
+ }
196
+
197
+ table tr {
198
+ background-color: lighten($primary-color, 45%);
199
+ transition: all .3s ease;
200
+ &:nth-child(even) {
201
+ background-color: $white;
202
+ }
203
+ }
204
+
205
+ table td {
206
+ padding: 8px;
207
+ font-size: 14px;
208
+ border: 1px solid $gray-blue;
209
+ }
210
+
211
+ table tr:hover {
212
+ background-color: $white;
213
+ }
@@ -0,0 +1,27 @@
1
+ .button {
2
+ display: inline-block;
3
+ white-space: nowrap;
4
+ vertical-align: middle;
5
+ font: inherit;
6
+ text-align: center;
7
+ padding: round($base-spacing-unit / 2) ($base-spacing-unit * 2);
8
+ border-radius: $global-radius;
9
+ cursor: pointer;
10
+ transition: $global-transition;
11
+
12
+ &--primary {
13
+ color: $button-color;
14
+ background-color: $button-background-color;
15
+
16
+ &:hover {
17
+ background-color: darken($primary-color, 15%);
18
+ color: $white;
19
+ transition: $global-transition;
20
+ }
21
+ }
22
+
23
+ &--big {
24
+ display: block;
25
+ width: 100%;
26
+ }
27
+ }
@@ -0,0 +1,82 @@
1
+ // FOOTER
2
+ .footer {
3
+ padding: 50px 0;
4
+ margin-top: 30px;
5
+ background: $black;
6
+ }
7
+
8
+ .footer-top {
9
+ display: flex;
10
+ justify-content: space-between;
11
+ align-items: center;
12
+ padding-bottom: 15px;
13
+ margin-bottom: 10px;
14
+ border-bottom: 1px solid $border-color;
15
+ .logo-text {
16
+ font-size: 16px;
17
+ font-weight: 700;
18
+ line-height: 16px;
19
+ text-transform: uppercase;
20
+ letter-spacing: 5px;
21
+ color: $text;
22
+ &:hover {
23
+ color: $gray-blue;
24
+ }
25
+ }
26
+ .top {
27
+ display: flex;
28
+ justify-content: center;
29
+ align-items: center;
30
+ width: 30px;
31
+ height: 30px;
32
+ border: 1px solid $blue-black;
33
+ background-color: $blue-black;
34
+ color: $text;
35
+ cursor: pointer;
36
+ transition: $global-transition;
37
+ opacity: .5;
38
+ &:hover {
39
+ opacity: 1;
40
+ }
41
+ }
42
+ }
43
+
44
+ .footer-bottom {
45
+ display: flex;
46
+ align-items: center;
47
+ flex-wrap: wrap;
48
+ .copyright {
49
+ margin-right: 60px;
50
+ p {
51
+ margin-bottom: 0;
52
+ font-size: 13px;
53
+ color: $light-white;
54
+ a {
55
+ color: $light-white;
56
+ &:hover {
57
+ color: $primary-color;
58
+ }
59
+ }
60
+ }
61
+ }
62
+ .footer-social {
63
+ ul {
64
+ li {
65
+ display: inline-block;
66
+ margin-left: 15px;
67
+ &:first-child {
68
+ margin-left: 0;
69
+ }
70
+ a {
71
+ font-size: 13px;
72
+ font-weight: bold;
73
+ color: $light-white;
74
+ transition: $global-transition;
75
+ &:hover {
76
+ color: $primary-color;
77
+ }
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
@@ -0,0 +1,41 @@
1
+ // Pagination
2
+ .pagination {
3
+ margin: 20px 0 40px;
4
+ .pagination-list {
5
+ display: flex;
6
+ align-items: center;
7
+ text-align: center;
8
+ .older-posts, .previous-posts, .newer-posts {
9
+ display: inline-block;
10
+ flex-grow: 1;
11
+ .older-link, .previous-link, .newer-link {
12
+ display: flex;
13
+ justify-content: center;
14
+ align-items: center;
15
+ padding: 20px 35px;
16
+ font-size: 14px;
17
+ line-height: 18px;
18
+ font-weight: bold;
19
+ color: $text;
20
+ background: rgba($blue-darken, .95);
21
+ transition: $global-transition;
22
+ &:hover {
23
+ background: rgba(28, 29, 31, 0.95);
24
+ }
25
+ }
26
+ }
27
+ .older-link {
28
+ i {
29
+ margin-left: 10px;
30
+ }
31
+ }
32
+ .previous-link, .newer-link {
33
+ i {
34
+ margin-right: 10px;
35
+ }
36
+ }
37
+ }
38
+ @media only screen and (min-width: 768px) {
39
+ margin: 20px 0;
40
+ }
41
+ }
@@ -0,0 +1,347 @@
1
+ // Header
2
+ .header {
3
+ margin-bottom: 50px;
4
+ background: $black;
5
+ padding: 40px 0 0;
6
+ }
7
+
8
+ .header-box {
9
+ display: flex;
10
+ flex-direction: row;
11
+ justify-content: space-between;
12
+ align-items: center;
13
+ color: $light-white;
14
+ }
15
+
16
+ .header-avatar {
17
+ display: block;
18
+ margin: auto;
19
+ border-radius: 100%;
20
+ width: 100px;
21
+ overflow: hidden;
22
+ margin-bottom: 20px;
23
+ border: 4px solid $white;
24
+
25
+ @media only screen and (min-width: 768px) {
26
+ width: 200px;
27
+ margin-bottom: 40px;
28
+ }
29
+
30
+ &:hover {
31
+ @include scale(1.05);
32
+ }
33
+ }
34
+
35
+ .header-title {
36
+ font-family: "Futura Md BT",sans-serif;
37
+ font-size: 27px;
38
+ font-weight: 500;
39
+ letter-spacing: 0em;
40
+ line-height: 1;
41
+ text-align: right;
42
+
43
+ @media only screen and (min-width: 768px) {
44
+ font-size: 32px;
45
+ }
46
+
47
+ @media only screen and (min-width: 1220px) {
48
+ font-size: 40px;
49
+ }
50
+ }
51
+
52
+ .header-subtitle{
53
+ font-family: "Futura Md BT",sans-serif;
54
+ font-size: 18px;
55
+ font-weight: 500;
56
+ letter-spacing: 0em;
57
+ text-align: right;
58
+ border-bottom: 4px solid $light-white;
59
+ margin-bottom: 20px;
60
+
61
+ @media only screen and (min-width: 768px) {
62
+ font-size: 32px;
63
+ }
64
+
65
+ @media only screen and (min-width: 1220px) {
66
+ font-size: 40px;
67
+ }
68
+ }
69
+
70
+ .menu-links {
71
+ .list-reset {
72
+ display: flex;
73
+ flex-direction: row;
74
+ flex-wrap: wrap;
75
+ justify-content: space-between;
76
+ margin-top: 60px;
77
+ .item{
78
+ list-style: none;
79
+ .item-link{
80
+ color: $light-white;
81
+ font-size: 18px;
82
+ &:hover {
83
+ color: $primary-color;
84
+ }
85
+ }
86
+ }
87
+ }
88
+ }
89
+
90
+ .header-tagline {
91
+ margin-top: 10px;
92
+ font-family: $base-font-family;
93
+ font-size: 16px;
94
+ font-weight: 400;
95
+ letter-spacing: 0em;
96
+ line-height: 1.5;
97
+
98
+ @media only screen and (min-width: 768px) {
99
+ margin-top: 15px;
100
+ font-size: 18px;
101
+ }
102
+
103
+ @media only screen and (min-width: 1220px) {
104
+ font-size: 18px;
105
+ }
106
+ }
107
+
108
+ // Articles
109
+ .article-first {
110
+ margin-bottom: 30px;
111
+ background: $black;
112
+ .article-image-first {
113
+ position: relative;
114
+ display: flex;
115
+ align-items: center;
116
+ min-height: 450px;
117
+ background-size: cover;
118
+ background-position: center;
119
+ background-repeat: no-repeat;
120
+ background-color: $black;
121
+ box-shadow: 0 9px 18px 0 rgba(0, 0, 0, .25);
122
+ &:before {
123
+ content: "";
124
+ display: table;
125
+ padding-top: 50%;
126
+ }
127
+ }
128
+ .article-content-first {
129
+ padding: 20px;
130
+ color: $text;
131
+ .article-tag {
132
+ .tag {
133
+ font-size: 12px;
134
+ }
135
+ }
136
+ .article-date {
137
+ .date {
138
+ font-size: 12px;
139
+ color: rgba($text, .8);
140
+ }
141
+ }
142
+ .article-title {
143
+ margin-bottom: 20px;
144
+ font-size: 30px;
145
+ line-height: 30px;
146
+ font-weight: normal;
147
+ a {
148
+ color: $text;
149
+ transition: $global-transition;
150
+ }
151
+ }
152
+ .article-excerpt {
153
+ max-width: 450px;
154
+ margin-bottom: 30px;
155
+ font-size: 14px;
156
+ line-height: 23px;
157
+ }
158
+ .button {
159
+ font-size: 14px;
160
+ font-weight: 700;
161
+ border: 1px solid rgba(201, 211, 231, 50);
162
+ color: $text;
163
+ transition: $global-transition;
164
+ &:hover {
165
+ border: 1px solid $primary-color;
166
+ background: $primary-color;
167
+ color: $white;
168
+ }
169
+ }
170
+ }
171
+ }
172
+
173
+ .article {
174
+ display: flex;
175
+ margin-bottom: 25px;
176
+ .article-box {
177
+ padding-bottom: 20px;
178
+ border-bottom: 2px solid $border-color;
179
+ }
180
+ .article-head {
181
+ background: $black;
182
+ }
183
+ .article-image {
184
+ position: relative;
185
+ display: block;
186
+ margin-bottom: 20px;
187
+ background-size: cover;
188
+ background-position: center;
189
+ background-repeat: no-repeat;
190
+ background-color: $black;
191
+ box-shadow: 0 9px 18px 0 rgba(0, 0, 0, .25);
192
+ &:before {
193
+ content: "";
194
+ display: table;
195
+ padding-top: 75%;
196
+ }
197
+ }
198
+ .article-content {
199
+ .article-info {
200
+ display: flex;
201
+ justify-content: space-between;
202
+ align-items: center;
203
+ flex-wrap: wrap;
204
+ margin-bottom: 5px;
205
+ .article-date {
206
+ font-size: 12px;
207
+ color: rgba($text, .8);
208
+ }
209
+ .article-tag {
210
+ .tag {
211
+ display: inline-block;
212
+ padding: 2px 5px;
213
+ margin-right: 5px;
214
+ font-size: 12px;
215
+ line-height: 18px;
216
+ font-weight: bold;
217
+ border: 1px solid $primary-color;
218
+ border-radius: $global-radius;
219
+ text-transform: capitalize;
220
+ color: $primary-color;
221
+ transition: $global-transition;
222
+ &:last-child {
223
+ margin-right: 0;
224
+ }
225
+ &:hover {
226
+ background: $primary-color;
227
+ color: $white;
228
+ }
229
+ }
230
+ }
231
+ }
232
+ .article-title {
233
+ margin-bottom: 5px;
234
+ a {
235
+ font-size: 24px;
236
+ color: $text;
237
+ }
238
+ }
239
+ .article-excerpt {
240
+ margin-bottom: 0;
241
+ font-size: 15px;
242
+ line-height: 25px;
243
+ color: $light-white;
244
+ }
245
+ }
246
+ }
247
+
248
+ .article-box {
249
+ position: relative;
250
+ overflow: hidden;
251
+ }
252
+
253
+ .article-first .article-image-first, .article-box .article-image {
254
+ position: relative;
255
+ opacity: 0;
256
+ transition: all 1s cubic-bezier(0.6, 0.3, 0, 1);
257
+ }
258
+
259
+ .article-first.reveal-in .article-image-first, .article-box.reveal-in .article-image {
260
+ opacity: 1;
261
+ }
262
+
263
+
264
+
265
+ // Media
266
+ @media only screen and (min-width: 576px) {
267
+ .article-first {
268
+ .article-content-first {
269
+ .article-title {
270
+ font-size: 45px;
271
+ line-height: 45px;
272
+ }
273
+ .article-excerpt {
274
+ margin-bottom: 50px;
275
+ }
276
+ }
277
+ }
278
+
279
+ .menu-list {
280
+ .menu-link {
281
+ font-size: 50px;
282
+ line-height: 80px;
283
+ &:before {
284
+ height: 8px;
285
+ }
286
+ }
287
+ }
288
+
289
+ }
290
+
291
+ @media only screen and (min-width: 768px) {
292
+ .article-first {
293
+ .article-content-first {
294
+ padding: 60px 40px 0;
295
+ }
296
+ }
297
+ }
298
+
299
+ @media only screen and (max-width: 480px) {
300
+ // Header
301
+ .header {
302
+ padding: 20px 0 0;
303
+ margin-bottom: 30px;
304
+ }
305
+
306
+ .header-box {
307
+ flex-flow: wrap;
308
+ }
309
+
310
+ .header-box hr{
311
+ width: 100%;
312
+ background-color: transparent;
313
+ margin: 0;
314
+ }
315
+
316
+ .wd-mob{
317
+ width: 100%;
318
+ }
319
+
320
+ .header-avatar {
321
+ margin: auto;
322
+ margin-bottom: 25px;
323
+ }
324
+
325
+ .header-title {
326
+ font-size: 20px;
327
+ text-align: center;
328
+ }
329
+
330
+ .header-subtitle{
331
+ font-size: 16px;
332
+ text-align: center;
333
+ border-bottom: 2px solid #e7e7e7;
334
+ }
335
+ .menu-links {
336
+ .list-reset {
337
+ margin-top: 20px;
338
+ .item{
339
+ list-style: none;
340
+ width: calc(100% / 2);
341
+ }
342
+ }
343
+ }
344
+
345
+
346
+ }
347
+