solar-flair 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +86 -0
  4. data/_includes/ad.html +5 -0
  5. data/_includes/contact.html +68 -0
  6. data/_includes/footer.html +155 -0
  7. data/_includes/head.html +92 -0
  8. data/_includes/header.html +47 -0
  9. data/_includes/resources.html +16 -0
  10. data/_layouts/blog.html +54 -0
  11. data/_layouts/default.html +22 -0
  12. data/_layouts/home.html +128 -0
  13. data/_layouts/page.html +55 -0
  14. data/_layouts/post.html +53 -0
  15. data/_sass/solar-flair.scss +200 -0
  16. data/_sass/solar-flair/_base.scss +164 -0
  17. data/_sass/solar-flair/_gradients.scss +47 -0
  18. data/_sass/solar-flair/_home.scss +161 -0
  19. data/_sass/solar-flair/_hr.scss +49 -0
  20. data/_sass/solar-flair/_layout.scss +250 -0
  21. data/_sass/solar-flair/_links.scss +111 -0
  22. data/_sass/solar-flair/_lists.scss +7 -0
  23. data/_sass/solar-flair/_promo.scss +0 -0
  24. data/_sass/solar-flair/_syntax-highlighting.scss +71 -0
  25. data/_sass/solar-flair/_typeography.scss +115 -0
  26. data/assets/fonts/Montserrat/Montserrat-Black.ttf +0 -0
  27. data/assets/fonts/Montserrat/Montserrat-BlackItalic.ttf +0 -0
  28. data/assets/fonts/Montserrat/Montserrat-Bold.ttf +0 -0
  29. data/assets/fonts/Montserrat/Montserrat-BoldItalic.ttf +0 -0
  30. data/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf +0 -0
  31. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf +0 -0
  32. data/assets/fonts/Montserrat/Montserrat-ExtraLight.ttf +0 -0
  33. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf +0 -0
  34. data/assets/fonts/Montserrat/Montserrat-Italic.ttf +0 -0
  35. data/assets/fonts/Montserrat/Montserrat-Light.ttf +0 -0
  36. data/assets/fonts/Montserrat/Montserrat-LightItalic.ttf +0 -0
  37. data/assets/fonts/Montserrat/Montserrat-Medium.ttf +0 -0
  38. data/assets/fonts/Montserrat/Montserrat-MediumItalic.ttf +0 -0
  39. data/assets/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
  40. data/assets/fonts/Montserrat/Montserrat-SemiBold.ttf +0 -0
  41. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf +0 -0
  42. data/assets/fonts/Montserrat/Montserrat-Thin.ttf +0 -0
  43. data/assets/fonts/Montserrat/Montserrat-ThinItalic.ttf +0 -0
  44. data/assets/fonts/Montserrat/OFL.txt +93 -0
  45. data/assets/fonts/Open_Sans/LICENSE.txt +202 -0
  46. data/assets/fonts/Open_Sans/OpenSans-Bold.ttf +0 -0
  47. data/assets/fonts/Open_Sans/OpenSans-BoldItalic.ttf +0 -0
  48. data/assets/fonts/Open_Sans/OpenSans-ExtraBold.ttf +0 -0
  49. data/assets/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf +0 -0
  50. data/assets/fonts/Open_Sans/OpenSans-Italic.ttf +0 -0
  51. data/assets/fonts/Open_Sans/OpenSans-Light.ttf +0 -0
  52. data/assets/fonts/Open_Sans/OpenSans-LightItalic.ttf +0 -0
  53. data/assets/fonts/Open_Sans/OpenSans-Regular.ttf +0 -0
  54. data/assets/fonts/Open_Sans/OpenSans-SemiBold.ttf +0 -0
  55. data/assets/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf +0 -0
  56. data/assets/images/canvas.jpg +0 -0
  57. data/assets/images/paisley.jpg +0 -0
  58. data/assets/images/pattern.svg +5715 -0
  59. data/assets/images/squares.jpg +0 -0
  60. data/assets/images/white-horizontal.svg +102 -0
  61. data/assets/main.scss +6 -0
  62. data/assets/solar-flair.js +100 -0
  63. data/assets/solar-flair.min.js +1 -0
  64. metadata +151 -0
@@ -0,0 +1,111 @@
1
+
2
+ // Sitewide Links
3
+
4
+ .blue * > a{
5
+ color: $blue-color;
6
+ &:hover{
7
+ color: darken($blue-color, 15%);
8
+ text-decoration: none;
9
+ }
10
+ }
11
+ .green * > a{
12
+ color: $green-color;
13
+ &:hover{
14
+ color: darken($green-color, 15%);
15
+ text-decoration: none;
16
+ }
17
+ }
18
+ .orange * > a{
19
+ color: $orange-color;
20
+ &:hover{
21
+ color: darken($orange-color, 15%);
22
+ text-decoration: none;
23
+ }
24
+ }
25
+ .purple * > a{
26
+ color: $purple-color;
27
+ &:hover{
28
+ color: darken($purple-color, 15%);
29
+ text-decoration: none;
30
+ }
31
+ }
32
+ .grey * > a{
33
+ color: darken($grey-color, 10%);
34
+ &:hover{
35
+ color: darken($grey-color, 25%);
36
+ text-decoration: none;
37
+ }
38
+ }
39
+
40
+ // Explicit Links
41
+ a.blue{
42
+ color: $blue-color;
43
+ &:hover{
44
+ color: darken($blue-color, 15%);
45
+ text-decoration: none;
46
+ }
47
+ }
48
+ a.green{
49
+ color: $green-color;
50
+ &:hover{
51
+ color: darken($green-color, 15%);
52
+ text-decoration: none;
53
+ }
54
+ }
55
+ a.orange{
56
+ color: $orange-color;
57
+ &:hover{
58
+ color: darken($orange-color, 15%);
59
+ text-decoration: none;
60
+ }
61
+ }
62
+ a.purple{
63
+ color: $purple-color;
64
+ &:hover{
65
+ color: darken($purple-color, 15%);
66
+ text-decoration: none;
67
+ }
68
+ }
69
+ a.grey{
70
+ color: $grey-color;
71
+ &:hover{
72
+ color: darken($grey-color, 15%);
73
+ text-decoration: none;
74
+ }
75
+ }
76
+
77
+
78
+
79
+ .btn-primary{
80
+ background:$blue-color;
81
+ background:
82
+ linear-gradient(
83
+ to bottom right,
84
+ rgba(20, 161, 175, .91),
85
+ rgba(20, 161, 175, 1)
86
+ );
87
+ border-color:$blue-color;
88
+ &:hover{
89
+ background-color: darken($blue-color, 15%)!important;
90
+ border-color: darken($blue-color, 15%)!important;
91
+ color:white!important;
92
+ text-decoration: none;
93
+ }
94
+ }
95
+
96
+ .btn-success{
97
+ background:$green-color;
98
+ background:
99
+ linear-gradient(
100
+ to bottom right,
101
+ rgba(66, 142, 66, .91),
102
+ rgba(66, 142, 66, 1)
103
+ );
104
+ border-color:$green-color;
105
+ &:hover{
106
+ background-color: darken($green-color, 15%)!important;
107
+ border-color: darken($green-color, 15%)!important;
108
+ color:white!important;
109
+ text-decoration: none;
110
+ }
111
+ }
@@ -0,0 +1,7 @@
1
+ dt{
2
+ padding-left: 10px;
3
+ text-transform: uppercase;
4
+ }
5
+ dd{
6
+ padding-left: 20px;
7
+ }
File without changes
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+ @extend %vertical-rhythm;
7
+
8
+ .highlighter-rouge & {
9
+ background: #eef;
10
+ }
11
+
12
+ .c { color: #998; font-style: italic } // Comment
13
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
14
+ .k { font-weight: bold } // Keyword
15
+ .o { font-weight: bold } // Operator
16
+ .cm { color: #998; font-style: italic } // Comment.Multiline
17
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
18
+ .c1 { color: #998; font-style: italic } // Comment.Single
19
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
21
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
+ .ge { font-style: italic } // Generic.Emph
23
+ .gr { color: #a00 } // Generic.Error
24
+ .gh { color: #999 } // Generic.Heading
25
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
+ .go { color: #888 } // Generic.Output
28
+ .gp { color: #555 } // Generic.Prompt
29
+ .gs { font-weight: bold } // Generic.Strong
30
+ .gu { color: #aaa } // Generic.Subheading
31
+ .gt { color: #a00 } // Generic.Traceback
32
+ .kc { font-weight: bold } // Keyword.Constant
33
+ .kd { font-weight: bold } // Keyword.Declaration
34
+ .kp { font-weight: bold } // Keyword.Pseudo
35
+ .kr { font-weight: bold } // Keyword.Reserved
36
+ .kt { color: #458; font-weight: bold } // Keyword.Type
37
+ .m { color: #099 } // Literal.Number
38
+ .s { color: #d14 } // Literal.String
39
+ .na { color: #008080 } // Name.Attribute
40
+ .nb { color: #0086B3 } // Name.Builtin
41
+ .nc { color: #458; font-weight: bold } // Name.Class
42
+ .no { color: #008080 } // Name.Constant
43
+ .ni { color: #800080 } // Name.Entity
44
+ .ne { color: #900; font-weight: bold } // Name.Exception
45
+ .nf { color: #900; font-weight: bold } // Name.Function
46
+ .nn { color: #555 } // Name.Namespace
47
+ .nt { color: #000080 } // Name.Tag
48
+ .nv { color: #008080 } // Name.Variable
49
+ .ow { font-weight: bold } // Operator.Word
50
+ .w { color: #bbb } // Text.Whitespace
51
+ .mf { color: #099 } // Literal.Number.Float
52
+ .mh { color: #099 } // Literal.Number.Hex
53
+ .mi { color: #099 } // Literal.Number.Integer
54
+ .mo { color: #099 } // Literal.Number.Oct
55
+ .sb { color: #d14 } // Literal.String.Backtick
56
+ .sc { color: #d14 } // Literal.String.Char
57
+ .sd { color: #d14 } // Literal.String.Doc
58
+ .s2 { color: #d14 } // Literal.String.Double
59
+ .se { color: #d14 } // Literal.String.Escape
60
+ .sh { color: #d14 } // Literal.String.Heredoc
61
+ .si { color: #d14 } // Literal.String.Interpol
62
+ .sx { color: #d14 } // Literal.String.Other
63
+ .sr { color: #009926 } // Literal.String.Regex
64
+ .s1 { color: #d14 } // Literal.String.Single
65
+ .ss { color: #990073 } // Literal.String.Symbol
66
+ .bp { color: #999 } // Name.Builtin.Pseudo
67
+ .vc { color: #008080 } // Name.Variable.Class
68
+ .vg { color: #008080 } // Name.Variable.Global
69
+ .vi { color: #008080 } // Name.Variable.Instance
70
+ .il { color: #099 } // Literal.Number.Integer.Long
71
+ }
@@ -0,0 +1,115 @@
1
+ span.grey{
2
+ color:$grey-color;
3
+ }
4
+
5
+ .text-blue{
6
+ color: $blue-color;
7
+ }
8
+ .text-green{
9
+ color: $green-color;
10
+ }
11
+ .text-orange{
12
+ color: $orange-color;
13
+ }
14
+ .text-purple{
15
+ color: $purple-color;
16
+ }
17
+ .text-grey{
18
+ color: $grey-color;
19
+ }
20
+
21
+ .text-d10-blue{
22
+ color: darken($blue-color, 10%);
23
+ }
24
+ .text-d10-green{
25
+ color: darken($green-color, 10%);
26
+ }
27
+ .text-d10-orange{
28
+ color: darken($orange-color, 10%);
29
+ }
30
+ .text-d10-purple{
31
+ color: darken($purple-color, 10%);
32
+ }
33
+ .text-d10-grey{
34
+ color: darken($grey-color, 10%);
35
+ }
36
+
37
+ .text-d20-blue{
38
+ color: darken($blue-color, 20%);
39
+ }
40
+ .text-d20-green{
41
+ color: darken($green-color, 20%);
42
+ }
43
+ .text-d20-orange{
44
+ color: darken($orange-color, 20%);
45
+ }
46
+ .text-d20-purple{
47
+ color: darken($purple-color, 20%);
48
+ }
49
+ .text-d20-grey{
50
+ color: darken($grey-color, 20%);
51
+ }
52
+
53
+ .text-d30-blue{
54
+ color: darken($blue-color, 30%);
55
+ }
56
+ .text-d30-green{
57
+ color: darken($green-color, 30%);
58
+ }
59
+ .text-d30-orange{
60
+ color: darken($orange-color, 30%);
61
+ }
62
+ .text-d30-purple{
63
+ color: darken($purple-color, 30%);
64
+ }
65
+ .text-d30-grey{
66
+ color: darken($grey-color, 30%);
67
+ }
68
+
69
+ .text-l10-blue{
70
+ color: lighten($blue-color, 10%);
71
+ }
72
+ .text-l10-green{
73
+ color: lighten($green-color, 10%);
74
+ }
75
+ .text-l10-orange{
76
+ color: lighten($orange-color, 10%);
77
+ }
78
+ .text-l10-purple{
79
+ color: lighten($purple-color, 10%);
80
+ }
81
+ .text-l10-grey{
82
+ color: lighten($grey-color, 10%);
83
+ }
84
+
85
+ .text-l20-blue{
86
+ color: lighten($blue-color, 20%);
87
+ }
88
+ .text-l20-green{
89
+ color: lighten($green-color, 20%);
90
+ }
91
+ .text-l20-orange{
92
+ color: lighten($orange-color, 20%);
93
+ }
94
+ .text-l20-purple{
95
+ color: lighten($purple-color, 20%);
96
+ }
97
+ .text-l20-grey{
98
+ color: lighten($grey-color, 20%);
99
+ }
100
+
101
+ .text-l30-blue{
102
+ color: lighten($blue-color, 30%);
103
+ }
104
+ .text-l30-green{
105
+ color: lighten($green-color, 30%);
106
+ }
107
+ .text-l30-orange{
108
+ color: lighten($orange-color, 30%);
109
+ }
110
+ .text-l30-purple{
111
+ color: lighten($purple-color, 30%);
112
+ }
113
+ .text-l30-grey{
114
+ color: lighten($grey-color, 30%);
115
+ }
@@ -0,0 +1,93 @@
1
+ Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ http://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.