jekyll-kde-theme 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +662 -0
  3. data/README.md +64 -0
  4. data/_includes/footer.html +75 -0
  5. data/_includes/head.html +22 -0
  6. data/_includes/header.html +36 -0
  7. data/_layouts/changelog.html +11 -0
  8. data/_layouts/default.html +15 -0
  9. data/_layouts/page.html +13 -0
  10. data/_layouts/post.html +5 -0
  11. data/_sass/aetherCore.scss +479 -0
  12. data/_sass/base.scss +546 -0
  13. data/_sass/download.scss +30 -0
  14. data/_sass/glyphs.scss +136 -0
  15. data/_sass/home.scss +185 -0
  16. data/_sass/social.scss +50 -0
  17. data/assets/Noto-Sans-700/LICENSE.txt +94 -0
  18. data/assets/Noto-Sans-700/Noto-Sans-700.eot +0 -0
  19. data/assets/Noto-Sans-700/Noto-Sans-700.svg +336 -0
  20. data/assets/Noto-Sans-700/Noto-Sans-700.ttf +0 -0
  21. data/assets/Noto-Sans-700/Noto-Sans-700.woff +0 -0
  22. data/assets/Noto-Sans-700/Noto-Sans-700.woff2 +0 -0
  23. data/assets/Noto-Sans-regular/LICENSE.txt +94 -0
  24. data/assets/Noto-Sans-regular/Noto-Sans-regular.eot +0 -0
  25. data/assets/Noto-Sans-regular/Noto-Sans-regular.svg +335 -0
  26. data/assets/Noto-Sans-regular/Noto-Sans-regular.ttf +0 -0
  27. data/assets/Noto-Sans-regular/Noto-Sans-regular.woff +0 -0
  28. data/assets/Noto-Sans-regular/Noto-Sans-regular.woff2 +0 -0
  29. data/assets/aether/media/128x128.svg +80 -0
  30. data/assets/aether/media/16x16.svg +80 -0
  31. data/assets/aether/media/180x180.png +0 -0
  32. data/assets/aether/media/192x192.png +0 -0
  33. data/assets/aether/media/24x24.svg +80 -0
  34. data/assets/aether/media/32x32.svg +80 -0
  35. data/assets/aether/media/64x64.svg +80 -0
  36. data/assets/glyph/glyph.eot +0 -0
  37. data/assets/glyph/glyph.svg +47 -0
  38. data/assets/glyph/glyph.ttf +0 -0
  39. data/assets/glyph/glyph.woff +0 -0
  40. data/assets/img/Next.jpg +0 -0
  41. data/assets/img/ark.svg +46 -0
  42. data/assets/img/flatpak.png +0 -0
  43. data/assets/img/git.svg +24 -0
  44. data/assets/img/konqi-dev.png +0 -0
  45. data/assets/img/konqi-docbook.png +0 -0
  46. data/assets/img/konqi-mail.png +0 -0
  47. data/assets/img/tux.png +0 -0
  48. data/assets/nav.js +7 -0
  49. data/assets/preview.js +5 -0
  50. data/changelog.md +22 -0
  51. metadata +134 -0
data/_sass/home.scss ADDED
@@ -0,0 +1,185 @@
1
+ #kHeader {
2
+ width: 100%;
3
+ height: 400px;
4
+ background-image: url(/assets/img/Next.jpg);
5
+ background-position: center;
6
+ background-size: cover;
7
+
8
+ h1 {
9
+ font-size: 24px;
10
+ font-weight: bold;
11
+ }
12
+
13
+ .carousel-inner {
14
+ width: 100%;
15
+ height: 100%;
16
+ }
17
+
18
+ .carousel-item {
19
+ color: #EEE;
20
+ width: 100%;
21
+ height: 100%;
22
+ }
23
+
24
+ .carousel-item-content {
25
+ width: calc(100% - 2*28px);
26
+ height: 90%;
27
+ display: flex;
28
+ flex-direction: column-reverse;
29
+ margin: auto;
30
+
31
+ @media(min-width: 768px) {
32
+ flex-direction: row;
33
+ align-items: center;
34
+ height: 100%;
35
+ }
36
+ @media(min-width: 1100px) {
37
+ max-width: 1140px;
38
+ width: 100%;
39
+ }
40
+ }
41
+
42
+ .slide-background {
43
+ width: 100%;
44
+ flex-grow: 2;
45
+ background-size: contain;
46
+ background-position: center;
47
+ background-repeat: no-repeat;
48
+
49
+ @media(min-width: 768px) {
50
+ flex: 2 1 auto;
51
+ height: 100%;
52
+ }
53
+ }
54
+
55
+ .carousel-text-overlay {
56
+ flex-shrink: 2;
57
+ text-align: center;
58
+ margin: auto;
59
+ width: 100%;
60
+ padding: 30px 0 10px 0;
61
+ color: #FFF;
62
+
63
+ h1 {
64
+ text-transform: uppercase;
65
+ font-size: 2em;
66
+
67
+ @media(min-width: 768px) {
68
+ font-size: 3em;
69
+ }
70
+ @media(min-width: 1100px) {
71
+ font-size: 3em;
72
+ margin-bottom: 16px;
73
+ }
74
+ }
75
+
76
+ p {
77
+ line-height: 1.5em;
78
+ }
79
+
80
+ @media(min-width: 768px) {
81
+ flex: 1 2 auto;
82
+ position: unset;
83
+ border: none;
84
+ background: none;
85
+ text-align: left;
86
+ color: #FFF;
87
+ font-size: 1.3em;
88
+ padding: 0 10px 0 15px;
89
+ }
90
+ @media(min-width: 1100px) {
91
+ font-size: 1.6em;
92
+ padding: 0 40px 0 15px;
93
+ }
94
+
95
+ }
96
+
97
+ .learn-more {
98
+ color: #54a3d8;
99
+ }
100
+
101
+ @media(min-width: 768px) {
102
+ height: 500px;
103
+ }
104
+ @media(min-width: 1100px) {
105
+ height: 700px;
106
+ }
107
+ }
108
+
109
+ #kHeaderCarousel::before {
110
+ content: "";
111
+ position: absolute;
112
+ top: 0;
113
+ left: 0;
114
+ width: 100%;
115
+ height: 100%;
116
+ background-color: rgba(0, 0, 0, 0.3);
117
+ }
118
+
119
+ .product-anchor {
120
+ display: block;
121
+ position: relative;
122
+ top: -52px; /* compensate for sticky header */
123
+ visibility: hidden;
124
+ }
125
+
126
+ .main {
127
+ .block:nth-of-type(odd) {
128
+ background-color: #eff1f1;
129
+ }
130
+
131
+ .block:nth-of-type(even) {
132
+ background-color: #fff;
133
+ }
134
+ }
135
+
136
+ .light-text {
137
+ h1 {
138
+ color: #EEE;
139
+ }
140
+
141
+ a {
142
+ color: #abdaf9;
143
+ }
144
+ }
145
+
146
+ .kAppInfo {
147
+ display: flex;
148
+ flex-direction: column-reverse;
149
+
150
+ img {
151
+ max-width: 100%;
152
+
153
+ @media(min-width: 768px) {
154
+ max-width: 40%;
155
+ height: auto;
156
+ margin: 15px;
157
+ }
158
+ }
159
+
160
+ .kappInfo-content {
161
+ margin: 15px;
162
+ }
163
+
164
+ @media(min-width: 768px) {
165
+ flex-direction: row;
166
+ align-items: center;
167
+ }
168
+ }
169
+
170
+ #akonadi-logo {
171
+ width: 50%;
172
+ height: auto;
173
+ margin: auto;
174
+
175
+ @media(min-width: 768px) {
176
+ max-width: 30%;
177
+ }
178
+ }
179
+
180
+ @media (min-width: 768px) {
181
+ div.block:nth-of-type(odd) .kAppInfo {
182
+ flex-direction: row-reverse;
183
+ }
184
+ }
185
+
data/_sass/social.scss ADDED
@@ -0,0 +1,50 @@
1
+ .kSocialLinks {
2
+ line-height: 50px;
3
+ }
4
+
5
+ .kSocialLinks a {
6
+ display: inline-block;
7
+ color: #fafafa;
8
+ background: #27AE60;
9
+ position: relative;
10
+ text-indent: -9999px;
11
+ width: 24px;
12
+ line-height: 30px;
13
+ padding: 0px 10px;
14
+ border-radius: 3px;
15
+ transition: all .2s;
16
+ }
17
+
18
+ .kSocialLinks a:after {
19
+ content: "@";
20
+ font-family: 'glyph';
21
+ font-size: 24px;
22
+ text-indent: 0px;
23
+ color: #fafafa;
24
+ position: absolute;
25
+ top: 0px;
26
+ left: 0px;
27
+ right: 0px;
28
+ text-align: center;
29
+ }
30
+
31
+ .kSocialLinks a.shareFacebook { background-color: #2980b9; }
32
+ .kSocialLinks a.shareGoogle { background-color: #d35400; }
33
+ .kSocialLinks a.shareTwitter { background-color: #3daefd; }
34
+ .kSocialLinks a.shareForum { background-color: #0068c6; }
35
+ .kSocialLinks a.shareTelegram { background-color: #2ca5e0; }
36
+
37
+ .kSocialLinks a.shareFacebook:hover { background-color: #3498db; }
38
+ .kSocialLinks a.shareGoogle:hover { background-color: #f67400; }
39
+ .kSocialLinks a.shareTwitter:hover { background-color: #70c3fe; }
40
+ .kSocialLinks a.shareForum:hover { background-color: #1078d6; }
41
+ .kSocialLinks a.shareTelegram:hover { background-color: #2ca5e0; }
42
+
43
+ .kSocialLinks a.shareFacebook:after { content: "F"; }
44
+ .kSocialLinks a.shareGoogle:after { content: "G"; }
45
+ .kSocialLinks a.shareTwitter:after { content: "T"; }
46
+ .kSocialLinks a.shareForum:after { content: "K"; }
47
+ .kSocialLinks a.shareTelegram:after { content: "↗"; }
48
+
49
+
50
+
@@ -0,0 +1,94 @@
1
+ Copyright 2012 Google Inc. All Rights Reserved.
2
+
3
+ This Font Software is licensed under the SIL Open Font License,
4
+ Version 1.1.
5
+
6
+ This license is copied below, and is also available with a FAQ at:
7
+ http://scripts.sil.org/OFL
8
+
9
+ -----------------------------------------------------------
10
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
11
+ -----------------------------------------------------------
12
+
13
+ PREAMBLE
14
+ The goals of the Open Font License (OFL) are to stimulate worldwide
15
+ development of collaborative font projects, to support the font
16
+ creation efforts of academic and linguistic communities, and to
17
+ provide a free and open framework in which fonts may be shared and
18
+ improved in partnership with others.
19
+
20
+ The OFL allows the licensed fonts to be used, studied, modified and
21
+ redistributed freely as long as they are not sold by themselves. The
22
+ fonts, including any derivative works, can be bundled, embedded,
23
+ redistributed and/or sold with any software provided that any reserved
24
+ names are not used by derivative works. The fonts and derivatives,
25
+ however, cannot be released under any other type of license. The
26
+ requirement for fonts to remain under this license does not apply to
27
+ any document created using the fonts or their derivatives.
28
+
29
+ DEFINITIONS
30
+ "Font Software" refers to the set of files released by the Copyright
31
+ Holder(s) under this license and clearly marked as such. This may
32
+ include source files, build scripts and documentation.
33
+
34
+ "Reserved Font Name" refers to any names specified as such after the
35
+ copyright statement(s).
36
+
37
+ "Original Version" refers to the collection of Font Software
38
+ components as distributed by the Copyright Holder(s).
39
+
40
+ "Modified Version" refers to any derivative made by adding to,
41
+ deleting, or substituting -- in part or in whole -- any of the
42
+ components of the Original Version, by changing formats or by porting
43
+ the Font Software to a new environment.
44
+
45
+ "Author" refers to any designer, engineer, programmer, technical
46
+ writer or other person who contributed to the Font Software.
47
+
48
+ PERMISSION & CONDITIONS
49
+ Permission is hereby granted, free of charge, to any person obtaining
50
+ a copy of the Font Software, to use, study, copy, merge, embed,
51
+ modify, redistribute, and sell modified and unmodified copies of the
52
+ Font Software, subject to the following conditions:
53
+
54
+ 1) Neither the Font Software nor any of its individual components, in
55
+ Original or Modified Versions, may be sold by itself.
56
+
57
+ 2) Original or Modified Versions of the Font Software may be bundled,
58
+ redistributed and/or sold with any software, provided that each copy
59
+ contains the above copyright notice and this license. These can be
60
+ included either as stand-alone text files, human-readable headers or
61
+ in the appropriate machine-readable metadata fields within text or
62
+ binary files as long as those fields can be easily viewed by the user.
63
+
64
+ 3) No Modified Version of the Font Software may use the Reserved Font
65
+ Name(s) unless explicit written permission is granted by the
66
+ corresponding Copyright Holder. This restriction only applies to the
67
+ primary font name as presented to the users.
68
+
69
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
70
+ Software shall not be used to promote, endorse or advertise any
71
+ Modified Version, except to acknowledge the contribution(s) of the
72
+ Copyright Holder(s) and the Author(s) or with their explicit written
73
+ permission.
74
+
75
+ 5) The Font Software, modified or unmodified, in part or in whole,
76
+ must be distributed entirely under this license, and must not be
77
+ distributed under any other license. The requirement for fonts to
78
+ remain under this license does not apply to any document created using
79
+ the Font Software.
80
+
81
+ TERMINATION
82
+ This license becomes null and void if any of the above conditions are
83
+ not met.
84
+
85
+ DISCLAIMER
86
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
87
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
88
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
89
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
90
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
91
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
92
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
93
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
94
+ OTHER DEALINGS IN THE FONT SOFTWARE.