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,133 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BACKGROUND POSITION
11
+
12
+ Base:
13
+ bg = background
14
+
15
+ Modifiers:
16
+ -center = center center
17
+ -top = top center
18
+ -right = center right
19
+ -bottom = bottom center
20
+ -left = center left
21
+
22
+ Media Query Extensions:
23
+ -ns = not-small
24
+ -m = medium
25
+ -l = large
26
+
27
+ */
28
+
29
+ .bg-center {
30
+ background-repeat: no-repeat;
31
+ background-position: center center;
32
+ }
33
+
34
+ .bg-top {
35
+ background-repeat: no-repeat;
36
+ background-position: top center;
37
+ }
38
+
39
+ .bg-right {
40
+ background-repeat: no-repeat;
41
+ background-position: center right;
42
+ }
43
+
44
+ .bg-bottom {
45
+ background-repeat: no-repeat;
46
+ background-position: bottom center;
47
+ }
48
+
49
+ .bg-left {
50
+ background-repeat: no-repeat;
51
+ background-position: center left;
52
+ }
53
+
54
+ @media #{$breakpoint-not-small} {
55
+ .bg-center-ns {
56
+ background-repeat: no-repeat;
57
+ background-position: center center;
58
+ }
59
+
60
+ .bg-top-ns {
61
+ background-repeat: no-repeat;
62
+ background-position: top center;
63
+ }
64
+
65
+ .bg-right-ns {
66
+ background-repeat: no-repeat;
67
+ background-position: center right;
68
+ }
69
+
70
+ .bg-bottom-ns {
71
+ background-repeat: no-repeat;
72
+ background-position: bottom center;
73
+ }
74
+
75
+ .bg-left-ns {
76
+ background-repeat: no-repeat;
77
+ background-position: center left;
78
+ }
79
+ }
80
+
81
+ @media #{$breakpoint-medium} {
82
+ .bg-center-m {
83
+ background-repeat: no-repeat;
84
+ background-position: center center;
85
+ }
86
+
87
+ .bg-top-m {
88
+ background-repeat: no-repeat;
89
+ background-position: top center;
90
+ }
91
+
92
+ .bg-right-m {
93
+ background-repeat: no-repeat;
94
+ background-position: center right;
95
+ }
96
+
97
+ .bg-bottom-m {
98
+ background-repeat: no-repeat;
99
+ background-position: bottom center;
100
+ }
101
+
102
+ .bg-left-m {
103
+ background-repeat: no-repeat;
104
+ background-position: center left;
105
+ }
106
+ }
107
+
108
+ @media #{$breakpoint-large} {
109
+ .bg-center-l {
110
+ background-repeat: no-repeat;
111
+ background-position: center center;
112
+ }
113
+
114
+ .bg-top-l {
115
+ background-repeat: no-repeat;
116
+ background-position: top center;
117
+ }
118
+
119
+ .bg-right-l {
120
+ background-repeat: no-repeat;
121
+ background-position: center right;
122
+ }
123
+
124
+ .bg-bottom-l {
125
+ background-repeat: no-repeat;
126
+ background-position: bottom center;
127
+ }
128
+
129
+ .bg-left-l {
130
+ background-repeat: no-repeat;
131
+ background-position: center left;
132
+ }
133
+ }
@@ -0,0 +1,41 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BACKGROUND SIZE
11
+ Docs: http://tachyons.io/docs/themes/background-size/
12
+
13
+ Media Query Extensions:
14
+ -ns = not-small
15
+ -m = medium
16
+ -l = large
17
+
18
+ */
19
+
20
+ /*
21
+ Often used in combination with background image set as an inline style
22
+ on an html element.
23
+ */
24
+
25
+ .cover { background-size: cover!important; }
26
+ .contain { background-size: contain!important; }
27
+
28
+ @media #{$breakpoint-not-small} {
29
+ .cover-ns { background-size: cover!important; }
30
+ .contain-ns { background-size: contain!important; }
31
+ }
32
+
33
+ @media #{$breakpoint-medium} {
34
+ .cover-m { background-size: cover!important; }
35
+ .contain-m { background-size: contain!important; }
36
+ }
37
+
38
+ @media #{$breakpoint-large} {
39
+ .cover-l { background-size: cover!important; }
40
+ .contain-l { background-size: contain!important; }
41
+ }
@@ -0,0 +1,93 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER COLORS
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Border colors can be used to extend the base
14
+ border classes ba,bt,bb,br,bl found in the _borders.css file.
15
+
16
+ The base border class by default will set the color of the border
17
+ to that of the current text color. These classes are for the cases
18
+ where you desire for the text and border colors to be different.
19
+
20
+ Base:
21
+ b = border
22
+
23
+ Modifiers:
24
+ --color-name = each color variable name is also a border color name
25
+
26
+ */
27
+
28
+ .b--black { border-color: $black; }
29
+ .b--near-black { border-color: $near-black; }
30
+ .b--dark-gray { border-color: $dark-gray; }
31
+ .b--mid-gray { border-color: $mid-gray; }
32
+ .b--gray { border-color: $gray; }
33
+ .b--silver { border-color: $silver; }
34
+ .b--light-silver { border-color: $light-silver; }
35
+ .b--moon-gray { border-color: $moon-gray; }
36
+ .b--light-gray { border-color: $light-gray; }
37
+ .b--near-white { border-color: $near-white; }
38
+ .b--white { border-color: $white; }
39
+
40
+ .b--white-90 { border-color: $white-90; }
41
+ .b--white-80 { border-color: $white-80; }
42
+ .b--white-70 { border-color: $white-70; }
43
+ .b--white-60 { border-color: $white-60; }
44
+ .b--white-50 { border-color: $white-50; }
45
+ .b--white-40 { border-color: $white-40; }
46
+ .b--white-30 { border-color: $white-30; }
47
+ .b--white-20 { border-color: $white-20; }
48
+ .b--white-10 { border-color: $white-10; }
49
+ .b--white-05 { border-color: $white-05; }
50
+ .b--white-025 { border-color: $white-025; }
51
+ .b--white-0125 { border-color: $white-0125; }
52
+
53
+ .b--black-90 { border-color: $black-90; }
54
+ .b--black-80 { border-color: $black-80; }
55
+ .b--black-70 { border-color: $black-70; }
56
+ .b--black-60 { border-color: $black-60; }
57
+ .b--black-50 { border-color: $black-50; }
58
+ .b--black-40 { border-color: $black-40; }
59
+ .b--black-30 { border-color: $black-30; }
60
+ .b--black-20 { border-color: $black-20; }
61
+ .b--black-10 { border-color: $black-10; }
62
+ .b--black-05 { border-color: $black-05; }
63
+ .b--black-025 { border-color: $black-025; }
64
+ .b--black-0125 { border-color: $black-0125; }
65
+
66
+ .b--dark-red { border-color: $dark-red; }
67
+ .b--red { border-color: $red; }
68
+ .b--light-red { border-color: $light-red; }
69
+ .b--orange { border-color: $orange; }
70
+ .b--gold { border-color: $gold; }
71
+ .b--yellow { border-color: $yellow; }
72
+ .b--light-yellow { border-color: $light-yellow; }
73
+ .b--purple { border-color: $purple; }
74
+ .b--light-purple { border-color: $light-purple; }
75
+ .b--dark-pink { border-color: $dark-pink; }
76
+ .b--hot-pink { border-color: $hot-pink; }
77
+ .b--pink { border-color: $pink; }
78
+ .b--light-pink { border-color: $light-pink; }
79
+ .b--dark-green { border-color: $dark-green; }
80
+ .b--green { border-color: $green; }
81
+ .b--light-green { border-color: $light-green; }
82
+ .b--navy { border-color: $navy; }
83
+ .b--dark-blue { border-color: $dark-blue; }
84
+ .b--blue { border-color: $blue; }
85
+ .b--light-blue { border-color: $light-blue; }
86
+ .b--lightest-blue { border-color: $lightest-blue; }
87
+ .b--washed-blue { border-color: $washed-blue; }
88
+ .b--washed-green { border-color: $washed-green; }
89
+ .b--washed-yellow { border-color: $washed-yellow; }
90
+ .b--washed-red { border-color: $washed-red; }
91
+
92
+ .b--transparent { border-color: $transparent; }
93
+ .b--inherit { border-color: inherit; }
@@ -0,0 +1,134 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER RADIUS
11
+ Docs: http://tachyons.io/docs/themes/border-radius/
12
+
13
+ Base:
14
+ br = border-radius
15
+
16
+ Modifiers:
17
+ 0 = 0/none
18
+ 1 = 1st step in scale
19
+ 2 = 2nd step in scale
20
+ 3 = 3rd step in scale
21
+ 4 = 4th step in scale
22
+
23
+ Literal values:
24
+ -100 = 100%
25
+ -pill = 9999px
26
+
27
+ Media Query Extensions:
28
+ -ns = not-small
29
+ -m = medium
30
+ -l = large
31
+
32
+ */
33
+
34
+ .br0 { border-radius: 0; }
35
+ .br1 { border-radius: .125rem; }
36
+ .br2 { border-radius: .25rem; }
37
+ .br3 { border-radius: .5rem; }
38
+ .br4 { border-radius: 1rem; }
39
+ .br-100 { border-radius: 100%; }
40
+ .br-pill { border-radius: 9999px; }
41
+ .br--bottom {
42
+ border-top-left-radius: 0;
43
+ border-top-right-radius: 0;
44
+ }
45
+ .br--top {
46
+ border-bottom-left-radius: 0;
47
+ border-bottom-right-radius: 0;
48
+ }
49
+ .br--right {
50
+ border-top-left-radius: 0;
51
+ border-bottom-left-radius: 0;
52
+ }
53
+ .br--left {
54
+ border-top-right-radius: 0;
55
+ border-bottom-right-radius: 0;
56
+ }
57
+
58
+ @media #{$breakpoint-not-small} {
59
+ .br0-ns { border-radius: 0; }
60
+ .br1-ns { border-radius: .125rem; }
61
+ .br2-ns { border-radius: .25rem; }
62
+ .br3-ns { border-radius: .5rem; }
63
+ .br4-ns { border-radius: 1rem; }
64
+ .br-100-ns { border-radius: 100%; }
65
+ .br-pill-ns { border-radius: 9999px; }
66
+ .br--bottom-ns {
67
+ border-top-left-radius: 0;
68
+ border-top-right-radius: 0;
69
+ }
70
+ .br--top-ns {
71
+ border-bottom-left-radius: 0;
72
+ border-bottom-right-radius: 0;
73
+ }
74
+ .br--right-ns {
75
+ border-top-left-radius: 0;
76
+ border-bottom-left-radius: 0;
77
+ }
78
+ .br--left-ns {
79
+ border-top-right-radius: 0;
80
+ border-bottom-right-radius: 0;
81
+ }
82
+ }
83
+
84
+ @media #{$breakpoint-medium} {
85
+ .br0-m { border-radius: 0; }
86
+ .br1-m { border-radius: .125rem; }
87
+ .br2-m { border-radius: .25rem; }
88
+ .br3-m { border-radius: .5rem; }
89
+ .br4-m { border-radius: 1rem; }
90
+ .br-100-m { border-radius: 100%; }
91
+ .br-pill-m { border-radius: 9999px; }
92
+ .br--bottom-m {
93
+ border-top-left-radius: 0;
94
+ border-top-right-radius: 0;
95
+ }
96
+ .br--top-m {
97
+ border-bottom-left-radius: 0;
98
+ border-bottom-right-radius: 0;
99
+ }
100
+ .br--right-m {
101
+ border-top-left-radius: 0;
102
+ border-bottom-left-radius: 0;
103
+ }
104
+ .br--left-m {
105
+ border-top-right-radius: 0;
106
+ border-bottom-right-radius: 0;
107
+ }
108
+ }
109
+
110
+ @media #{$breakpoint-large} {
111
+ .br0-l { border-radius: 0; }
112
+ .br1-l { border-radius: .125rem; }
113
+ .br2-l { border-radius: .25rem; }
114
+ .br3-l { border-radius: .5rem; }
115
+ .br4-l { border-radius: 1rem; }
116
+ .br-100-l { border-radius: 100%; }
117
+ .br-pill-l { border-radius: 9999px; }
118
+ .br--bottom-l {
119
+ border-top-left-radius: 0;
120
+ border-top-right-radius: 0;
121
+ }
122
+ .br--top-l {
123
+ border-bottom-left-radius: 0;
124
+ border-bottom-right-radius: 0;
125
+ }
126
+ .br--right-l {
127
+ border-top-left-radius: 0;
128
+ border-bottom-left-radius: 0;
129
+ }
130
+ .br--left-l {
131
+ border-top-right-radius: 0;
132
+ border-bottom-right-radius: 0;
133
+ }
134
+ }
@@ -0,0 +1,55 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER STYLES
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Depends on base border module in _borders.css
14
+
15
+ Base:
16
+ b = border-style
17
+
18
+ Modifiers:
19
+ --none = none
20
+ --dotted = dotted
21
+ --dashed = dashed
22
+ --solid = solid
23
+
24
+ Media Query Extensions:
25
+ -ns = not-small
26
+ -m = medium
27
+ -l = large
28
+
29
+ */
30
+
31
+ .b--dotted { border-style: dotted; }
32
+ .b--dashed { border-style: dashed; }
33
+ .b--solid { border-style: solid; }
34
+ .b--none { border-style: none; }
35
+
36
+ @media #{$breakpoint-not-small} {
37
+ .b--dotted-ns { border-style: dotted; }
38
+ .b--dashed-ns { border-style: dashed; }
39
+ .b--solid-ns { border-style: solid; }
40
+ .b--none-ns { border-style: none; }
41
+ }
42
+
43
+ @media #{$breakpoint-medium} {
44
+ .b--dotted-m { border-style: dotted; }
45
+ .b--dashed-m { border-style: dashed; }
46
+ .b--solid-m { border-style: solid; }
47
+ .b--none-m { border-style: none; }
48
+ }
49
+
50
+ @media #{$breakpoint-large} {
51
+ .b--dotted-l { border-style: dotted; }
52
+ .b--dashed-l { border-style: dashed; }
53
+ .b--solid-l { border-style: solid; }
54
+ .b--none-l { border-style: none; }
55
+ }
@@ -0,0 +1,81 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER WIDTHS
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Base:
14
+ bw = border-width
15
+
16
+ Modifiers:
17
+ 0 = 0 width border
18
+ 1 = 1st step in border-width scale
19
+ 2 = 2nd step in border-width scale
20
+ 3 = 3rd step in border-width scale
21
+ 4 = 4th step in border-width scale
22
+ 5 = 5th step in border-width scale
23
+
24
+ Media Query Extensions:
25
+ -ns = not-small
26
+ -m = medium
27
+ -l = large
28
+
29
+ */
30
+
31
+ .bw0 { border-width: 0; }
32
+ .bw1 { border-width: .125rem; }
33
+ .bw2 { border-width: .25rem; }
34
+ .bw3 { border-width: .5rem; }
35
+ .bw4 { border-width: 1rem; }
36
+ .bw5 { border-width: 2rem; }
37
+
38
+ /* Resets */
39
+ .bt-0 { border-top-width: 0; }
40
+ .br-0 { border-right-width: 0; }
41
+ .bb-0 { border-bottom-width: 0; }
42
+ .bl-0 { border-left-width: 0; }
43
+
44
+ @media #{$breakpoint-not-small} {
45
+ .bw0-ns { border-width: 0; }
46
+ .bw1-ns { border-width: .125rem; }
47
+ .bw2-ns { border-width: .25rem; }
48
+ .bw3-ns { border-width: .5rem; }
49
+ .bw4-ns { border-width: 1rem; }
50
+ .bw5-ns { border-width: 2rem; }
51
+ .bt-0-ns { border-top-width: 0; }
52
+ .br-0-ns { border-right-width: 0; }
53
+ .bb-0-ns { border-bottom-width: 0; }
54
+ .bl-0-ns { border-left-width: 0; }
55
+ }
56
+
57
+ @media #{$breakpoint-medium} {
58
+ .bw0-m { border-width: 0; }
59
+ .bw1-m { border-width: .125rem; }
60
+ .bw2-m { border-width: .25rem; }
61
+ .bw3-m { border-width: .5rem; }
62
+ .bw4-m { border-width: 1rem; }
63
+ .bw5-m { border-width: 2rem; }
64
+ .bt-0-m { border-top-width: 0; }
65
+ .br-0-m { border-right-width: 0; }
66
+ .bb-0-m { border-bottom-width: 0; }
67
+ .bl-0-m { border-left-width: 0; }
68
+ }
69
+
70
+ @media #{$breakpoint-large} {
71
+ .bw0-l { border-width: 0; }
72
+ .bw1-l { border-width: .125rem; }
73
+ .bw2-l { border-width: .25rem; }
74
+ .bw3-l { border-width: .5rem; }
75
+ .bw4-l { border-width: 1rem; }
76
+ .bw5-l { border-width: 2rem; }
77
+ .bt-0-l { border-top-width: 0; }
78
+ .br-0-l { border-right-width: 0; }
79
+ .bb-0-l { border-bottom-width: 0; }
80
+ .bl-0-l { border-left-width: 0; }
81
+ }
@@ -0,0 +1,65 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDERS
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Base:
14
+ b = border
15
+
16
+ Modifiers:
17
+ a = all
18
+ t = top
19
+ r = right
20
+ b = bottom
21
+ l = left
22
+ n = none
23
+
24
+ Media Query Extensions:
25
+ -ns = not-small
26
+ -m = medium
27
+ -l = large
28
+
29
+ */
30
+
31
+ .ba { border-style: solid; border-width: 1px; }
32
+ .bt { border-top-style: solid; border-top-width: 1px; }
33
+ .br { border-right-style: solid; border-right-width: 1px; }
34
+ .bb { border-bottom-style: solid; border-bottom-width: 1px; }
35
+ .bl { border-left-style: solid; border-left-width: 1px; }
36
+ .bn { border-style: none; border-width: 0; }
37
+
38
+
39
+ @media #{$breakpoint-not-small} {
40
+ .ba-ns { border-style: solid; border-width: 1px; }
41
+ .bt-ns { border-top-style: solid; border-top-width: 1px; }
42
+ .br-ns { border-right-style: solid; border-right-width: 1px; }
43
+ .bb-ns { border-bottom-style: solid; border-bottom-width: 1px; }
44
+ .bl-ns { border-left-style: solid; border-left-width: 1px; }
45
+ .bn-ns { border-style: none; border-width: 0; }
46
+ }
47
+
48
+ @media #{$breakpoint-medium} {
49
+ .ba-m { border-style: solid; border-width: 1px; }
50
+ .bt-m { border-top-style: solid; border-top-width: 1px; }
51
+ .br-m { border-right-style: solid; border-right-width: 1px; }
52
+ .bb-m { border-bottom-style: solid; border-bottom-width: 1px; }
53
+ .bl-m { border-left-style: solid; border-left-width: 1px; }
54
+ .bn-m { border-style: none; border-width: 0; }
55
+ }
56
+
57
+ @media #{$breakpoint-large} {
58
+ .ba-l { border-style: solid; border-width: 1px; }
59
+ .bt-l { border-top-style: solid; border-top-width: 1px; }
60
+ .br-l { border-right-style: solid; border-right-width: 1px; }
61
+ .bb-l { border-bottom-style: solid; border-bottom-width: 1px; }
62
+ .bl-l { border-left-style: solid; border-left-width: 1px; }
63
+ .bn-l { border-style: none; border-width: 0; }
64
+ }
65
+
@@ -0,0 +1,48 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BOX-SHADOW
11
+ Docs: http://tachyons.io/docs/themes/box-shadow/
12
+
13
+ Media Query Extensions:
14
+ -ns = not-small
15
+ -m = medium
16
+ -l = large
17
+
18
+ */
19
+
20
+ .shadow-1 { box-shadow: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ); }
21
+ .shadow-2 { box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ); }
22
+ .shadow-3 { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ); }
23
+ .shadow-4 { box-shadow: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ); }
24
+ .shadow-5 { box-shadow: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ); }
25
+
26
+ @media #{$breakpoint-not-small} {
27
+ .shadow-1-ns { box-shadow: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ); }
28
+ .shadow-2-ns { box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ); }
29
+ .shadow-3-ns { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ); }
30
+ .shadow-4-ns { box-shadow: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ); }
31
+ .shadow-5-ns { box-shadow: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ); }
32
+ }
33
+
34
+ @media #{$breakpoint-medium} {
35
+ .shadow-1-m { box-shadow: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ); }
36
+ .shadow-2-m { box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ); }
37
+ .shadow-3-m { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ); }
38
+ .shadow-4-m { box-shadow: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ); }
39
+ .shadow-5-m { box-shadow: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ); }
40
+ }
41
+
42
+ @media #{$breakpoint-large} {
43
+ .shadow-1-l { box-shadow: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ); }
44
+ .shadow-2-l { box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ); }
45
+ .shadow-3-l { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ); }
46
+ .shadow-4-l { box-shadow: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ); }
47
+ .shadow-5-l { box-shadow: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ); }
48
+ }
@@ -0,0 +1,50 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BOX SIZING
11
+
12
+ */
13
+
14
+ html,
15
+ body,
16
+ div,
17
+ article,
18
+ section,
19
+ main,
20
+ footer,
21
+ header,
22
+ form,
23
+ fieldset,
24
+ legend,
25
+ pre,
26
+ code,
27
+ a,
28
+ h1,h2,h3,h4,h5,h6,
29
+ p,
30
+ ul,
31
+ ol,
32
+ li,
33
+ dl,
34
+ dt,
35
+ dd,
36
+ textarea,
37
+ table,
38
+ td,
39
+ th,
40
+ tr,
41
+ input[type="email"],
42
+ input[type="number"],
43
+ input[type="password"],
44
+ input[type="tel"],
45
+ input[type="text"],
46
+ input[type="url"],
47
+ .border-box {
48
+ box-sizing: border-box;
49
+ }
50
+