pixyll_ashawley 2.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +22 -0
  3. data/README.md +252 -0
  4. data/_includes/ajaxify_content_form.html +30 -0
  5. data/_includes/footer.html +14 -0
  6. data/_includes/head.html +105 -0
  7. data/_includes/header.html +14 -0
  8. data/_includes/navigation.html +13 -0
  9. data/_includes/pagination.html +23 -0
  10. data/_includes/post_footer.html +10 -0
  11. data/_includes/share_buttons.html +41 -0
  12. data/_includes/social_links.html +59 -0
  13. data/_layouts/center.html +21 -0
  14. data/_layouts/default.html +32 -0
  15. data/_layouts/home.html +28 -0
  16. data/_layouts/page.html +11 -0
  17. data/_layouts/post.html +71 -0
  18. data/_sass/_animations.scss +60 -0
  19. data/_sass/_base.scss +34 -0
  20. data/_sass/_basscss.scss +25 -0
  21. data/_sass/_blockquotes.scss +16 -0
  22. data/_sass/_clearfix.scss +8 -0
  23. data/_sass/_code.scss +70 -0
  24. data/_sass/_footer.scss +29 -0
  25. data/_sass/_forms.scss +106 -0
  26. data/_sass/_gists.scss +12 -0
  27. data/_sass/_header.scss +50 -0
  28. data/_sass/_links.scss +53 -0
  29. data/_sass/_measure.scss +4 -0
  30. data/_sass/_media-queries.scss +64 -0
  31. data/_sass/_pagination.scss +52 -0
  32. data/_sass/_positions.scss +7 -0
  33. data/_sass/_posts.scss +48 -0
  34. data/_sass/_social-icons.scss +25 -0
  35. data/_sass/_tables.scss +45 -0
  36. data/_sass/_typography.scss +24 -0
  37. data/_sass/_variables.scss +121 -0
  38. data/_sass/basscss/_base-buttons.scss +28 -0
  39. data/_sass/basscss/_base-forms.scss +57 -0
  40. data/_sass/basscss/_base-reset.scss +20 -0
  41. data/_sass/basscss/_base-typography.scss +101 -0
  42. data/_sass/basscss/_buttons-blue.scss +27 -0
  43. data/_sass/basscss/_color-base.scss +28 -0
  44. data/_sass/basscss/_colors.scss +97 -0
  45. data/_sass/basscss/_syntax-highlighting.scss +119 -0
  46. data/_sass/basscss/_utility-headings.scss +37 -0
  47. data/_sass/basscss/_utility-typography.scss +38 -0
  48. data/_sass/basscss/_utility-white-space.scss +182 -0
  49. data/assets/css/main.scss +35 -0
  50. metadata +149 -0
@@ -0,0 +1,27 @@
1
+ .button-blue {
2
+ color: white;
3
+ background-color: $blue;
4
+ border-radius: $border-radius;
5
+ transition-duration: .1s;
6
+ transition-timing-function: ease-out;
7
+ transition-property: box-shadow, background-color;
8
+ }
9
+
10
+ .button-blue:hover {
11
+ opacity: .875;
12
+ }
13
+
14
+ .button-blue:active,
15
+ .button-blue.is-active {
16
+ box-shadow: inset 0 0 0 32px rgba(#000,.125), inset 0 2px 3px 0 rgba(#000,.25);
17
+ }
18
+
19
+ .button-blue:focus {
20
+ outline: none;
21
+ box-shadow: 0 0 0 2px rgba(white, .5), 0 0 1px 4px rgba($blue, .5);
22
+ }
23
+
24
+ .button-blue:disabled,
25
+ .button-blue.is-disabled {
26
+ opacity: .5;
27
+ }
@@ -0,0 +1,28 @@
1
+ /* Basscss Color Base */
2
+
3
+ body {
4
+ color: $dark-gray;
5
+ background-color: white;
6
+ }
7
+
8
+ a {
9
+ color: $blue;
10
+ text-decoration: none;
11
+ }
12
+
13
+ a:hover {
14
+ text-decoration: underline;
15
+ }
16
+
17
+ pre,
18
+ code {
19
+ background-color: $lighter-gray;
20
+ border-radius: $border-radius;
21
+ }
22
+
23
+ hr {
24
+ border: 0;
25
+ border-bottom-style: solid;
26
+ border-bottom-width: $border-width;
27
+ border-bottom-color: $border-color;
28
+ }
@@ -0,0 +1,97 @@
1
+ /* Basscss Colors */
2
+
3
+ .dark-gray {
4
+ color: $dark-gray;
5
+ }
6
+
7
+ .white {
8
+ color: white;
9
+ }
10
+
11
+ .blue {
12
+ color: $blue;
13
+ }
14
+
15
+ .mid-gray {
16
+ color: $mid-gray;
17
+ }
18
+
19
+ .light-gray {
20
+ color: $light-gray;
21
+ }
22
+
23
+ .lighter-gray {
24
+ color: $lighter-gray;
25
+ }
26
+
27
+ .red {
28
+ color: $red;
29
+ }
30
+
31
+ .green {
32
+ color: $green;
33
+ }
34
+
35
+ .yellow {
36
+ color: $yellow;
37
+ }
38
+
39
+ .orange {
40
+ color: $orange;
41
+ }
42
+
43
+ .bg-dark-gray {
44
+ background-color: $dark-gray;
45
+ }
46
+
47
+ .bg-white {
48
+ background-color: white;
49
+ }
50
+
51
+ .bg-blue {
52
+ background-color: $blue;
53
+ }
54
+
55
+ .bg-mid-gray {
56
+ background-color: $mid-gray;
57
+ }
58
+
59
+ .bg-light-gray {
60
+ background-color: $light-gray;
61
+ }
62
+
63
+ .bg-lighter-gray {
64
+ background-color: $lighter-gray;
65
+ }
66
+
67
+ .bg-red {
68
+ background-color: $red;
69
+ }
70
+
71
+ .bg-green {
72
+ background-color: $green;
73
+ }
74
+
75
+ .bg-yellow {
76
+ background-color: $yellow;
77
+ }
78
+
79
+ .bg-orange {
80
+ background-color: $orange;
81
+ }
82
+
83
+ .bg-darken-1 {
84
+ background-color: $darken-1;
85
+ }
86
+
87
+ .bg-darken-2 {
88
+ background-color: $darken-2;
89
+ }
90
+
91
+ .bg-darken-3 {
92
+ background-color: $darken-3;
93
+ }
94
+
95
+ .bg-darken-4 {
96
+ background-color: $darken-4;
97
+ }
@@ -0,0 +1,119 @@
1
+ .highlight {
2
+ -webkit-text-size-adjust: none;
3
+ }
4
+
5
+ .highlight .c,
6
+ .highlight .cs,
7
+ .highlight .cm,
8
+ .highlight .cp,
9
+ .highlight .c1 {
10
+ color: $hljs-comment;
11
+ font-style: italic;
12
+ }
13
+
14
+ .highlight .k,
15
+ .highlight .kc,
16
+ .highlight .kd,
17
+ .highlight .kn,
18
+ .highlight .kr,
19
+ .highlight .kt,
20
+ .highlight .kp {
21
+ color: $hljs-keyword;
22
+ }
23
+
24
+ .highlight .na,
25
+ .highlight .nb,
26
+ .highlight .nc,
27
+ .highlight .no,
28
+ .highlight .nd,
29
+ .highlight .ni,
30
+ .highlight .ne,
31
+ .highlight .nf,
32
+ .highlight .nl,
33
+ .highlight .nn,
34
+ .highlight .nx {
35
+ color: $hljs-name;
36
+ }
37
+
38
+ .highlight .mi,
39
+ .highlight .il {
40
+ color: $hljs-number;
41
+ }
42
+
43
+ .highlight .s,
44
+ .highlight .sb,
45
+ .highlight .sc,
46
+ .highlight .sd,
47
+ .highlight .s2,
48
+ .highlight .s3,
49
+ .highlight .sh,
50
+ .highlight .si,
51
+ .highlight .sx,
52
+ .highlight .sr,
53
+ .highlight .ss,
54
+ .highlight .s1 {
55
+ color: $hljs-string;
56
+ }
57
+
58
+ .hljs-title,
59
+ .hljs-id,
60
+ .scss .hljs-preprocessor {
61
+ color: $hljs-title;
62
+ font-weight: bold;
63
+ }
64
+
65
+ .highlight .k {
66
+ font-weight: normal;
67
+ }
68
+
69
+ .highlight .nc,
70
+ .highlight .no {
71
+ color: $hljs-type;
72
+ }
73
+
74
+ .highlight .o {
75
+ color: $hljs-tag;
76
+ font-weight: normal;
77
+ }
78
+
79
+ .highlight .nb {
80
+ color: $hljs-attribute;
81
+ }
82
+
83
+ .highlight .sr {
84
+ color: $hljs-regexp;
85
+ }
86
+
87
+ .highlight .ss {
88
+ color: $hljs-symbol;
89
+ }
90
+
91
+ .hljs-built_in {
92
+ color: $hljs-built-in;
93
+ }
94
+
95
+ .hljs-preprocessor,
96
+ .hljs-pragma,
97
+ .hljs-pi,
98
+ .hljs-doctype,
99
+ .hljs-shebang,
100
+ .hljs-cdata {
101
+ color: $hljs-preprocessor;
102
+ font-weight: bold;
103
+ }
104
+
105
+ .hljs-deletion {
106
+ background: $hljs-deletion;
107
+ }
108
+
109
+ .hljs-addition {
110
+ background: $hljs-addition;
111
+ }
112
+
113
+ .diff .hljs-change {
114
+ background: $hljs-change;
115
+ }
116
+
117
+ .hljs-chunk {
118
+ color: $hljs-chunk;
119
+ }
@@ -0,0 +1,37 @@
1
+ /* Basscss Utility Headings */
2
+
3
+ .h00 {
4
+ font-size: $h00;
5
+ }
6
+
7
+ .h0 {
8
+ font-size: $h0;
9
+ }
10
+
11
+ @media #{$breakpoint-md} {
12
+ .h00-responsive {
13
+ font-size: $h00-responsive;
14
+ }
15
+
16
+ .h0-responsive {
17
+ font-size: $h0-responsive;
18
+ }
19
+
20
+ .h1-responsive {
21
+ font-size: $h1-responsive;
22
+ }
23
+ }
24
+
25
+ @media #{$breakpoint-xl} {
26
+ .h00-responsive {
27
+ font-size: $h00-responsive-max;
28
+ }
29
+
30
+ .h0-responsive {
31
+ font-size: $h0-responsive-max;
32
+ }
33
+
34
+ .h1-responsive {
35
+ font-size: $h1-responsive-max;
36
+ }
37
+ }
@@ -0,0 +1,38 @@
1
+ /* Basscss Utility Typography */
2
+
3
+ .bold {
4
+ font-weight: $bold-font-weight;
5
+ }
6
+
7
+ .regular {
8
+ font-weight: normal;
9
+ }
10
+
11
+ .italic {
12
+ font-style: italic;
13
+ }
14
+
15
+ .caps {
16
+ text-transform: uppercase;
17
+ letter-spacing: .2em;
18
+ }
19
+
20
+ .left-align {
21
+ text-align: left;
22
+ }
23
+
24
+ .center {
25
+ text-align: center;
26
+ }
27
+
28
+ .right-align {
29
+ text-align: right;
30
+ }
31
+
32
+ .justify {
33
+ text-align: justify;
34
+ }
35
+
36
+ .nowrap {
37
+ white-space: nowrap;
38
+ }
@@ -0,0 +1,182 @@
1
+ /* Basscss Utility White Space */
2
+
3
+ .m0 {
4
+ margin: 0;
5
+ }
6
+
7
+ .mt0 {
8
+ margin-top: 0;
9
+ }
10
+
11
+ .mr0 {
12
+ margin-right: 0;
13
+ }
14
+
15
+ .mb0 {
16
+ margin-bottom: 0;
17
+ }
18
+
19
+ .ml0 {
20
+ margin-left: 0;
21
+ }
22
+
23
+ .m1 {
24
+ margin: $space-1;
25
+ }
26
+
27
+ .mt1 {
28
+ margin-top: $space-1;
29
+ }
30
+
31
+ .mr1 {
32
+ margin-right: $space-1;
33
+ }
34
+
35
+ .mb1 {
36
+ margin-bottom: $space-1;
37
+ }
38
+
39
+ .ml1 {
40
+ margin-left: $space-1;
41
+ }
42
+
43
+ .m2 {
44
+ margin: $space-2;
45
+ }
46
+
47
+ .mt2 {
48
+ margin-top: $space-2;
49
+ }
50
+
51
+ .mr2 {
52
+ margin-right: $space-2;
53
+ }
54
+
55
+ .mb2 {
56
+ margin-bottom: $space-2;
57
+ }
58
+
59
+ .ml2 {
60
+ margin-left: $space-2;
61
+ }
62
+
63
+ .m3 {
64
+ margin: $space-3;
65
+ }
66
+
67
+ .mt3 {
68
+ margin-top: $space-3;
69
+ }
70
+
71
+ .mr3 {
72
+ margin-right: $space-3;
73
+ }
74
+
75
+ .mb3 {
76
+ margin-bottom: $space-3;
77
+ }
78
+
79
+ .ml3 {
80
+ margin-left: $space-3;
81
+ }
82
+
83
+ .m4 {
84
+ margin: $space-4;
85
+ }
86
+
87
+ .mt4 {
88
+ margin-top: $space-4;
89
+ }
90
+
91
+ .mr4 {
92
+ margin-right: $space-4;
93
+ }
94
+
95
+ .mb4 {
96
+ margin-bottom: $space-4;
97
+ }
98
+
99
+ .ml4 {
100
+ margin-left: $space-4;
101
+ }
102
+
103
+ .mxn1 {
104
+ margin-left: -$space-1;
105
+ margin-right: -$space-1;
106
+ }
107
+
108
+ .mxn2 {
109
+ margin-left: -$space-2;
110
+ margin-right: -$space-2;
111
+ }
112
+
113
+ .mxn3 {
114
+ margin-left: -$space-3;
115
+ margin-right: -$space-3;
116
+ }
117
+
118
+ .mxn4 {
119
+ margin-left: -$space-4;
120
+ margin-right: -$space-4;
121
+ }
122
+
123
+ .mx-auto {
124
+ margin-left: auto;
125
+ margin-right: auto;
126
+ }
127
+
128
+ .p1 {
129
+ padding: $space-1;
130
+ }
131
+
132
+ .py1 {
133
+ padding-top: $space-1;
134
+ padding-bottom: $space-1;
135
+ }
136
+
137
+ .px1 {
138
+ padding-left: $space-1;
139
+ padding-right: $space-1;
140
+ }
141
+
142
+ .p2 {
143
+ padding: $space-2;
144
+ }
145
+
146
+ .py2 {
147
+ padding-top: $space-2;
148
+ padding-bottom: $space-2;
149
+ }
150
+
151
+ .px2 {
152
+ padding-left: $space-2;
153
+ padding-right: $space-2;
154
+ }
155
+
156
+ .p3 {
157
+ padding: $space-3;
158
+ }
159
+
160
+ .py3 {
161
+ padding-top: $space-3;
162
+ padding-bottom: $space-3;
163
+ }
164
+
165
+ .px3 {
166
+ padding-left: $space-3;
167
+ padding-right: $space-3;
168
+ }
169
+
170
+ .p4 {
171
+ padding: $space-4;
172
+ }
173
+
174
+ .py4 {
175
+ padding-top: $space-4;
176
+ padding-bottom: $space-4;
177
+ }
178
+
179
+ .px4 {
180
+ padding-left: $space-4;
181
+ padding-right: $space-4;
182
+ }