pocket-theme 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +2 -0
  4. data/_config.yml +56 -0
  5. data/_includes/annual-list.html +34 -0
  6. data/_includes/archive-list.html +51 -0
  7. data/_includes/footer.html +21 -0
  8. data/_includes/header.html +9 -0
  9. data/_includes/meta.html +30 -0
  10. data/_includes/style.scss +74 -0
  11. data/_layouts/.DS_Store +0 -0
  12. data/_layouts/archive.html +34 -0
  13. data/_layouts/default.html +29 -0
  14. data/_layouts/home.html +34 -0
  15. data/_layouts/page.html +29 -0
  16. data/_layouts/post.html +44 -0
  17. data/_sass/_aspect-ratios.scss +142 -0
  18. data/_sass/_background-position.scss +133 -0
  19. data/_sass/_background-size.scss +41 -0
  20. data/_sass/_border-colors.scss +93 -0
  21. data/_sass/_border-radius.scss +134 -0
  22. data/_sass/_border-style.scss +55 -0
  23. data/_sass/_border-widths.scss +81 -0
  24. data/_sass/_borders.scss +65 -0
  25. data/_sass/_box-shadow.scss +48 -0
  26. data/_sass/_box-sizing.scss +50 -0
  27. data/_sass/_c-elements.scss +142 -0
  28. data/_sass/_c-tokens.scss +132 -0
  29. data/_sass/_c.scss +57 -0
  30. data/_sass/_clears.scss +47 -0
  31. data/_sass/_code.scss +18 -0
  32. data/_sass/_colors.scss +84 -0
  33. data/_sass/_coordinates.scss +153 -0
  34. data/_sass/_debug-children.scss +21 -0
  35. data/_sass/_debug-grid.scss +33 -0
  36. data/_sass/_debug.scss +127 -0
  37. data/_sass/_debug_children.scss +18 -0
  38. data/_sass/_display.scss +111 -0
  39. data/_sass/_flexbox.scss +233 -0
  40. data/_sass/_floats.scss +56 -0
  41. data/_sass/_font-family.scss +107 -0
  42. data/_sass/_font-style.scss +36 -0
  43. data/_sass/_font-weight.scss +87 -0
  44. data/_sass/_forms.scss +23 -0
  45. data/_sass/_gradients.scss +29 -0
  46. data/_sass/_heights.scss +131 -0
  47. data/_sass/_hovers.scss +167 -0
  48. data/_sass/_images.scss +18 -0
  49. data/_sass/_letter-spacing.scss +40 -0
  50. data/_sass/_line-height.scss +41 -0
  51. data/_sass/_links.scss +34 -0
  52. data/_sass/_lists.scss +15 -0
  53. data/_sass/_max-widths.scss +105 -0
  54. data/_sass/_media-queries.scss +43 -0
  55. data/_sass/_module-template.scss +29 -0
  56. data/_sass/_negative-margins.scss +206 -0
  57. data/_sass/_nested.scss +64 -0
  58. data/_sass/_normalize.scss +454 -0
  59. data/_sass/_opacity.scss +27 -0
  60. data/_sass/_outlines.scss +39 -0
  61. data/_sass/_overflow.scss +82 -0
  62. data/_sass/_position.scss +44 -0
  63. data/_sass/_rotations.scss +50 -0
  64. data/_sass/_skins-pseudo.scss +243 -0
  65. data/_sass/_skins.scss +143 -0
  66. data/_sass/_spacing.scss +956 -0
  67. data/_sass/_styles.scss +15 -0
  68. data/_sass/_tables.scss +42 -0
  69. data/_sass/_tachyons-4.8.1.scss +2 -0
  70. data/_sass/_text-align.scss +54 -0
  71. data/_sass/_text-decoration.scss +42 -0
  72. data/_sass/_text-transform.scss +53 -0
  73. data/_sass/_type-scale.scss +102 -0
  74. data/_sass/_typography.scss +129 -0
  75. data/_sass/_utilities.scss +57 -0
  76. data/_sass/_variables.scss +6 -0
  77. data/_sass/_vertical-align.scss +43 -0
  78. data/_sass/_visibility.scss +58 -0
  79. data/_sass/_white-space.scss +41 -0
  80. data/_sass/_widths.scss +150 -0
  81. data/_sass/_word-break.scss +43 -0
  82. data/_sass/_z-index.scss +60 -0
  83. data/assets/.DS_Store +0 -0
  84. data/assets/images/rss.svg +1 -0
  85. data/assets/images/sta.webp +0 -0
  86. data/assets/style.scss +78 -0
  87. metadata +171 -0
@@ -0,0 +1,57 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ UTILITIES
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+ /* Equivalent to .overflow-y-scroll */
20
+ .overflow-container {
21
+ overflow-y: scroll;
22
+ }
23
+
24
+ .center {
25
+ margin-right: auto;
26
+ margin-left: auto;
27
+ }
28
+
29
+ .mr-auto { margin-right: auto; }
30
+ .ml-auto { margin-left: auto; }
31
+
32
+ @media #{$breakpoint-not-small}{
33
+ .center-ns {
34
+ margin-right: auto;
35
+ margin-left: auto;
36
+ }
37
+ .mr-auto-ns { margin-right: auto; }
38
+ .ml-auto-ns { margin-left: auto; }
39
+ }
40
+
41
+ @media #{$breakpoint-medium}{
42
+ .center-m {
43
+ margin-right: auto;
44
+ margin-left: auto;
45
+ }
46
+ .mr-auto-m { margin-right: auto; }
47
+ .ml-auto-m { margin-left: auto; }
48
+ }
49
+
50
+ @media #{$breakpoint-large}{
51
+ .center-l {
52
+ margin-right: auto;
53
+ margin-left: auto;
54
+ }
55
+ .mr-auto-l { margin-right: auto; }
56
+ .ml-auto-l { margin-left: auto; }
57
+ }
@@ -0,0 +1,6 @@
1
+ // Add your custom variables to this file
2
+ // I normally prepend them with a 'c-' to distinguish them from Tachyons selectors
3
+
4
+ // Better sans-serif stack putting Segoe before Arial on Windows
5
+ // We'll refer to this variable in _c.scss
6
+ $c-sans-serif: -apple-system, BlinkMacSystemFont, 'segoe ui', 'helvetica neue', helvetica, ubuntu, roboto, noto, sans-serif;
@@ -0,0 +1,43 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ VERTICAL ALIGN
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+ .v-base { vertical-align: baseline; }
20
+ .v-mid { vertical-align: middle; }
21
+ .v-top { vertical-align: top; }
22
+ .v-btm { vertical-align: bottom; }
23
+
24
+ @media #{$breakpoint-not-small} {
25
+ .v-base-ns { vertical-align: baseline; }
26
+ .v-mid-ns { vertical-align: middle; }
27
+ .v-top-ns { vertical-align: top; }
28
+ .v-btm-ns { vertical-align: bottom; }
29
+ }
30
+
31
+ @media #{$breakpoint-medium} {
32
+ .v-base-m { vertical-align: baseline; }
33
+ .v-mid-m { vertical-align: middle; }
34
+ .v-top-m { vertical-align: top; }
35
+ .v-btm-m { vertical-align: bottom; }
36
+ }
37
+
38
+ @media #{$breakpoint-large} {
39
+ .v-base-l { vertical-align: baseline; }
40
+ .v-mid-l { vertical-align: middle; }
41
+ .v-top-l { vertical-align: top; }
42
+ .v-btm-l { vertical-align: bottom; }
43
+ }
@@ -0,0 +1,58 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ VISIBILITY
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+
20
+ /*
21
+ Text that is hidden but accessible
22
+ Ref: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
23
+ */
24
+
25
+ .clip {
26
+ position: fixed !important;
27
+ _position: absolute !important;
28
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
29
+ clip: rect(1px, 1px, 1px, 1px);
30
+ }
31
+
32
+ @media #{$breakpoint-not-small} {
33
+ .clip-ns {
34
+ position: fixed !important;
35
+ _position: absolute !important;
36
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
37
+ clip: rect(1px, 1px, 1px, 1px);
38
+ }
39
+ }
40
+
41
+ @media #{$breakpoint-medium} {
42
+ .clip-m {
43
+ position: fixed !important;
44
+ _position: absolute !important;
45
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
46
+ clip: rect(1px, 1px, 1px, 1px);
47
+ }
48
+ }
49
+
50
+ @media #{$breakpoint-large} {
51
+ .clip-l {
52
+ position: fixed !important;
53
+ _position: absolute !important;
54
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
55
+ clip: rect(1px, 1px, 1px, 1px);
56
+ }
57
+ }
58
+
@@ -0,0 +1,41 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WHITE SPACE
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+
20
+ .ws-normal { white-space: normal; }
21
+ .nowrap { white-space: nowrap; }
22
+ .pre { white-space: pre; }
23
+
24
+ @media #{$breakpoint-not-small} {
25
+ .ws-normal-ns { white-space: normal; }
26
+ .nowrap-ns { white-space: nowrap; }
27
+ .pre-ns { white-space: pre; }
28
+ }
29
+
30
+ @media #{$breakpoint-medium} {
31
+ .ws-normal-m { white-space: normal; }
32
+ .nowrap-m { white-space: nowrap; }
33
+ .pre-m { white-space: pre; }
34
+ }
35
+
36
+ @media #{$breakpoint-large} {
37
+ .ws-normal-l { white-space: normal; }
38
+ .nowrap-l { white-space: nowrap; }
39
+ .pre-l { white-space: pre; }
40
+ }
41
+
@@ -0,0 +1,150 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WIDTHS
11
+ Docs: http://tachyons.io/docs/layout/widths/
12
+
13
+ Base:
14
+ w = width
15
+
16
+ Modifiers
17
+ 1 = 1st step in width scale
18
+ 2 = 2nd step in width scale
19
+ 3 = 3rd step in width scale
20
+ 4 = 4th step in width scale
21
+ 5 = 5th step in width scale
22
+
23
+ -10 = literal value 10%
24
+ -20 = literal value 20%
25
+ -25 = literal value 25%
26
+ -30 = literal value 30%
27
+ -33 = literal value 33%
28
+ -34 = literal value 34%
29
+ -40 = literal value 40%
30
+ -50 = literal value 50%
31
+ -60 = literal value 60%
32
+ -70 = literal value 70%
33
+ -75 = literal value 75%
34
+ -80 = literal value 80%
35
+ -90 = literal value 90%
36
+ -100 = literal value 100%
37
+
38
+ -third = 100% / 3 (Not supported in opera mini or IE8)
39
+ -two-thirds = 100% / 1.5 (Not supported in opera mini or IE8)
40
+ -auto = string value auto
41
+
42
+
43
+ Media Query Extensions:
44
+ -ns = not-small
45
+ -m = medium
46
+ -l = large
47
+
48
+ */
49
+
50
+ /* Width Scale */
51
+
52
+ .w1 { width: 1rem; }
53
+ .w2 { width: 2rem; }
54
+ .w3 { width: 4rem; }
55
+ .w4 { width: 8rem; }
56
+ .w5 { width: 16rem; }
57
+
58
+ .w-10 { width: 10%; }
59
+ .w-20 { width: 20%; }
60
+ .w-25 { width: 25%; }
61
+ .w-30 { width: 30%; }
62
+ .w-33 { width: 33%; }
63
+ .w-34 { width: 34%; }
64
+ .w-40 { width: 40%; }
65
+ .w-50 { width: 50%; }
66
+ .w-60 { width: 60%; }
67
+ .w-70 { width: 70%; }
68
+ .w-75 { width: 75%; }
69
+ .w-80 { width: 80%; }
70
+ .w-90 { width: 90%; }
71
+ .w-100 { width: 100%; }
72
+
73
+ .w-third { width: (100% / 3); }
74
+ .w-two-thirds { width: (100% / 1.5); }
75
+ .w-auto { width: auto; }
76
+
77
+ @media #{$breakpoint-not-small} {
78
+ .w1-ns { width: 1rem; }
79
+ .w2-ns { width: 2rem; }
80
+ .w3-ns { width: 4rem; }
81
+ .w4-ns { width: 8rem; }
82
+ .w5-ns { width: 16rem; }
83
+ .w-10-ns { width: 10%; }
84
+ .w-20-ns { width: 20%; }
85
+ .w-25-ns { width: 25%; }
86
+ .w-30-ns { width: 30%; }
87
+ .w-33-ns { width: 33%; }
88
+ .w-34-ns { width: 34%; }
89
+ .w-40-ns { width: 40%; }
90
+ .w-50-ns { width: 50%; }
91
+ .w-60-ns { width: 60%; }
92
+ .w-70-ns { width: 70%; }
93
+ .w-75-ns { width: 75%; }
94
+ .w-80-ns { width: 80%; }
95
+ .w-90-ns { width: 90%; }
96
+ .w-100-ns { width: 100%; }
97
+ .w-third-ns { width: (100% / 3); }
98
+ .w-two-thirds-ns { width: (100% / 1.5); }
99
+ .w-auto-ns { width: auto; }
100
+ }
101
+
102
+ @media #{$breakpoint-medium} {
103
+ .w1-m { width: 1rem; }
104
+ .w2-m { width: 2rem; }
105
+ .w3-m { width: 4rem; }
106
+ .w4-m { width: 8rem; }
107
+ .w5-m { width: 16rem; }
108
+ .w-10-m { width: 10%; }
109
+ .w-20-m { width: 20%; }
110
+ .w-25-m { width: 25%; }
111
+ .w-30-m { width: 30%; }
112
+ .w-33-m { width: 33%; }
113
+ .w-34-m { width: 34%; }
114
+ .w-40-m { width: 40%; }
115
+ .w-50-m { width: 50%; }
116
+ .w-60-m { width: 60%; }
117
+ .w-70-m { width: 70%; }
118
+ .w-75-m { width: 75%; }
119
+ .w-80-m { width: 80%; }
120
+ .w-90-m { width: 90%; }
121
+ .w-100-m { width: 100%; }
122
+ .w-third-m { width: (100% / 3); }
123
+ .w-two-thirds-m { width: (100% / 1.5); }
124
+ .w-auto-m { width: auto; }
125
+ }
126
+
127
+ @media #{$breakpoint-large} {
128
+ .w1-l { width: 1rem; }
129
+ .w2-l { width: 2rem; }
130
+ .w3-l { width: 4rem; }
131
+ .w4-l { width: 8rem; }
132
+ .w5-l { width: 16rem; }
133
+ .w-10-l { width: 10%; }
134
+ .w-20-l { width: 20%; }
135
+ .w-25-l { width: 25%; }
136
+ .w-30-l { width: 30%; }
137
+ .w-33-l { width: 33%; }
138
+ .w-34-l { width: 34%; }
139
+ .w-40-l { width: 40%; }
140
+ .w-50-l { width: 50%; }
141
+ .w-60-l { width: 60%; }
142
+ .w-70-l { width: 70%; }
143
+ .w-75-l { width: 75%; }
144
+ .w-80-l { width: 80%; }
145
+ .w-90-l { width: 90%; }
146
+ .w-100-l { width: 100%; }
147
+ .w-third-l { width: (100% / 3); }
148
+ .w-two-thirds-l { width: (100% / 1.5); }
149
+ .w-auto-l { width: auto; }
150
+ }
@@ -0,0 +1,43 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WORD BREAK
11
+
12
+ Base:
13
+ word = word-break
14
+
15
+ Media Query Extensions:
16
+ -ns = not-small
17
+ -m = medium
18
+ -l = large
19
+
20
+ */
21
+
22
+ .word-normal { word-break: normal; }
23
+ .word-wrap { word-break: break-all; }
24
+ .word-nowrap { word-break: keep-all; }
25
+
26
+ @media #{$breakpoint-not-small} {
27
+ .word-normal-ns { word-break: normal; }
28
+ .word-wrap-ns { word-break: break-all; }
29
+ .word-nowrap-ns { word-break: keep-all; }
30
+ }
31
+
32
+ @media #{$breakpoint-medium} {
33
+ .word-normal-m { word-break: normal; }
34
+ .word-wrap-m { word-break: break-all; }
35
+ .word-nowrap-m { word-break: keep-all; }
36
+ }
37
+
38
+ @media #{$breakpoint-large} {
39
+ .word-normal-l { word-break: normal; }
40
+ .word-wrap-l { word-break: break-all; }
41
+ .word-nowrap-l { word-break: keep-all; }
42
+ }
43
+
@@ -0,0 +1,60 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ Z-INDEX
11
+
12
+ Base
13
+ z = z-index
14
+
15
+ Modifiers
16
+ -0 = literal value 0
17
+ -1 = literal value 1
18
+ -2 = literal value 2
19
+ -3 = literal value 3
20
+ -4 = literal value 4
21
+ -5 = literal value 5
22
+ -999 = literal value 999
23
+ -9999 = literal value 9999
24
+
25
+ -max = largest accepted z-index value as integer
26
+
27
+ -inherit = string value inherit
28
+ -initial = string value initial
29
+ -unset = string value unset
30
+
31
+ MDN: https://developer.mozilla.org/en/docs/Web/CSS/z-index
32
+ Spec: http://www.w3.org/TR/CSS2/zindex.html
33
+ Articles:
34
+ https://philipwalton.com/articles/what-no-one-told-you-about-z-index/
35
+
36
+ Tips on extending:
37
+ There might be a time worth using negative z-index values.
38
+ Or if you are using tachyons with another project, you might need to
39
+ adjust these values to suit your needs.
40
+
41
+ */
42
+
43
+ .z-0 { z-index: 0; }
44
+ .z-1 { z-index: 1; }
45
+ .z-2 { z-index: 2; }
46
+ .z-3 { z-index: 3; }
47
+ .z-4 { z-index: 4; }
48
+ .z-5 { z-index: 5; }
49
+
50
+ .z-999 { z-index: 999; }
51
+ .z-9999 { z-index: 9999; }
52
+
53
+ .z-max {
54
+ z-index: 2147483647;
55
+ }
56
+
57
+ .z-inherit { z-index: inherit; }
58
+ .z-initial { z-index: initial; }
59
+ .z-unset { z-index: unset; }
60
+
data/assets/.DS_Store ADDED
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="48px" viewBox="0 0 24 24" width="48px" fill="#000000"><path d="M0 0h24v24H0z" fill="none"/><circle cx="6.18" cy="17.82" r="2.18"/><path d="M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"/></svg>
Binary file
data/assets/style.scss ADDED
@@ -0,0 +1,78 @@
1
+ ---
2
+ sitemap: false
3
+ ---
4
+
5
+ @import
6
+ "normalize",
7
+ "media-queries",
8
+ "variables",
9
+ "colors",
10
+ "spacing",
11
+ "aspect-ratios",
12
+ "background-position",
13
+ "background-size",
14
+ "borders",
15
+ "border-colors",
16
+ "border-radius",
17
+ "border-style",
18
+ "border-widths",
19
+ "box-shadow",
20
+ "box-sizing",
21
+ "clears",
22
+ "code",
23
+ "coordinates",
24
+ // Uncomment debug SASS files to debug
25
+ // "debug_children",
26
+ // "debug_grid",
27
+ // "debug",
28
+ "display",
29
+ "flexbox",
30
+ "floats",
31
+ "font-style",
32
+ "font-family",
33
+ "font-style",
34
+ "font-weight",
35
+ "forms",
36
+ "gradients",
37
+ "heights",
38
+ "hovers",
39
+ "images",
40
+ "letter-spacing",
41
+ "line-height",
42
+ "links",
43
+ "lists",
44
+ "max-widths",
45
+ // "module-template",
46
+ "negative-margins",
47
+ "nested",
48
+ "opacity",
49
+ "outlines",
50
+ "overflow",
51
+ "position",
52
+ "rotations",
53
+ "skins-pseudo",
54
+ "skins",
55
+ "styles",
56
+ "tables",
57
+ // If you just want all the Tachyons modules delete the single modules
58
+ // and uncomment this
59
+ // "tachyons-4.8.1",
60
+ "text-align",
61
+ "text-decoration",
62
+ "text-transform",
63
+ "type-scale",
64
+ "typography",
65
+ "utilities",
66
+ "vertical-align",
67
+ "visibility",
68
+ "white-space",
69
+ "widths",
70
+ "word-break",
71
+ "z-index",
72
+ // c-tokens contains your custom properties
73
+ "c-tokens",
74
+ // c-elements contains your element overrides
75
+ "c-elements",
76
+ // c contains your custom classes
77
+ "c"
78
+ ;