aivesoft-jekyll-theme 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +261 -0
- data/_includes/disqus_comments.html +20 -0
- data/_includes/footer.html +32 -0
- data/_includes/google-analytics.html +9 -0
- data/_includes/head.html +12 -0
- data/_includes/header.html +89 -0
- data/_includes/social.html +19 -0
- data/_layouts/default.html +20 -0
- data/_layouts/home.html +60 -0
- data/_layouts/page.html +14 -0
- data/_layouts/post.html +41 -0
- data/_sass/aivesoft-jekyll-theme/_base.scss +259 -0
- data/_sass/aivesoft-jekyll-theme/_layout.scss +565 -0
- data/_sass/aivesoft-jekyll-theme/_syntax-highlighting.scss +71 -0
- data/_sass/aivesoft-jekyll-theme.scss +58 -0
- data/assets/css/fontawesome.all.min.css +5 -0
- data/assets/css/style.scss +5 -0
- data/assets/images/appstore.png +0 -0
- data/assets/images/logo_transparent.png +0 -0
- data/assets/images/playstore.png +0 -0
- data/assets/images/screenshot.png +0 -0
- data/assets/images/social-icons.svg +41 -0
- data/assets/webfonts/fa-brands-400.eot +0 -0
- data/assets/webfonts/fa-brands-400.svg +3496 -0
- data/assets/webfonts/fa-brands-400.ttf +0 -0
- data/assets/webfonts/fa-brands-400.woff +0 -0
- data/assets/webfonts/fa-brands-400.woff2 +0 -0
- data/assets/webfonts/fa-regular-400.eot +0 -0
- data/assets/webfonts/fa-regular-400.svg +803 -0
- data/assets/webfonts/fa-regular-400.ttf +0 -0
- data/assets/webfonts/fa-regular-400.woff +0 -0
- data/assets/webfonts/fa-regular-400.woff2 +0 -0
- data/assets/webfonts/fa-solid-900.eot +0 -0
- data/assets/webfonts/fa-solid-900.svg +4667 -0
- data/assets/webfonts/fa-solid-900.ttf +0 -0
- data/assets/webfonts/fa-solid-900.woff +0 -0
- data/assets/webfonts/fa-solid-900.woff2 +0 -0
- metadata +144 -0
@@ -0,0 +1,259 @@
|
|
1
|
+
/**
|
2
|
+
* Reset some basic elements
|
3
|
+
*/
|
4
|
+
body,
|
5
|
+
h1,
|
6
|
+
h2,
|
7
|
+
h3,
|
8
|
+
h4,
|
9
|
+
h5,
|
10
|
+
h6,
|
11
|
+
p,
|
12
|
+
blockquote,
|
13
|
+
pre,
|
14
|
+
hr,
|
15
|
+
dl,
|
16
|
+
dd,
|
17
|
+
ol,
|
18
|
+
ul,
|
19
|
+
figure {
|
20
|
+
margin: 0;
|
21
|
+
padding: 0;
|
22
|
+
}
|
23
|
+
|
24
|
+
/**
|
25
|
+
* Basic styling
|
26
|
+
*/
|
27
|
+
body {
|
28
|
+
font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
|
29
|
+
color: $text-color;
|
30
|
+
background-color: $background-color;
|
31
|
+
-webkit-text-size-adjust: 100%;
|
32
|
+
-webkit-font-feature-settings: "kern" 1;
|
33
|
+
-moz-font-feature-settings: "kern" 1;
|
34
|
+
-o-font-feature-settings: "kern" 1;
|
35
|
+
font-feature-settings: "kern" 1;
|
36
|
+
font-kerning: normal;
|
37
|
+
display: flex;
|
38
|
+
min-height: 100vh;
|
39
|
+
flex-direction: column;
|
40
|
+
}
|
41
|
+
|
42
|
+
/**
|
43
|
+
* Set `margin-bottom` to maintain vertical rhythm
|
44
|
+
*/
|
45
|
+
h1,
|
46
|
+
h2,
|
47
|
+
h3,
|
48
|
+
h4,
|
49
|
+
h5,
|
50
|
+
h6,
|
51
|
+
p,
|
52
|
+
blockquote,
|
53
|
+
pre,
|
54
|
+
ul,
|
55
|
+
ol,
|
56
|
+
dl,
|
57
|
+
figure,
|
58
|
+
%vertical-rhythm {
|
59
|
+
margin-bottom: $spacing-unit / 2;
|
60
|
+
}
|
61
|
+
|
62
|
+
/**
|
63
|
+
* `main` element
|
64
|
+
*/
|
65
|
+
main {
|
66
|
+
display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
|
67
|
+
}
|
68
|
+
|
69
|
+
/**
|
70
|
+
* Images
|
71
|
+
*/
|
72
|
+
img {
|
73
|
+
max-width: 100%;
|
74
|
+
vertical-align: middle;
|
75
|
+
}
|
76
|
+
|
77
|
+
/**
|
78
|
+
* Figures
|
79
|
+
*/
|
80
|
+
figure > img {
|
81
|
+
display: block;
|
82
|
+
}
|
83
|
+
|
84
|
+
figcaption {
|
85
|
+
font-size: $small-font-size;
|
86
|
+
}
|
87
|
+
|
88
|
+
/**
|
89
|
+
* Lists
|
90
|
+
*/
|
91
|
+
ul,
|
92
|
+
ol {
|
93
|
+
margin-left: $spacing-unit;
|
94
|
+
}
|
95
|
+
|
96
|
+
li {
|
97
|
+
> ul,
|
98
|
+
> ol {
|
99
|
+
margin-bottom: 0;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
/**
|
104
|
+
* Headings
|
105
|
+
*/
|
106
|
+
h1,
|
107
|
+
h2,
|
108
|
+
h3,
|
109
|
+
h4,
|
110
|
+
h5,
|
111
|
+
h6 {
|
112
|
+
font-weight: $base-font-weight;
|
113
|
+
}
|
114
|
+
|
115
|
+
/**
|
116
|
+
* Links
|
117
|
+
*/
|
118
|
+
a {
|
119
|
+
color: $brand-color;
|
120
|
+
text-decoration: none;
|
121
|
+
|
122
|
+
&:visited {
|
123
|
+
color: darken($brand-color, 15%);
|
124
|
+
}
|
125
|
+
|
126
|
+
&:hover {
|
127
|
+
color: $text-color;
|
128
|
+
text-decoration: underline;
|
129
|
+
}
|
130
|
+
|
131
|
+
.social-media-list &:hover {
|
132
|
+
text-decoration: none;
|
133
|
+
|
134
|
+
.username {
|
135
|
+
text-decoration: underline;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
/**
|
141
|
+
* Blockquotes
|
142
|
+
*/
|
143
|
+
blockquote {
|
144
|
+
color: $grey-color;
|
145
|
+
border-left: 4px solid $grey-color-light;
|
146
|
+
padding-left: $spacing-unit / 2;
|
147
|
+
@include relative-font-size(1.125);
|
148
|
+
letter-spacing: -1px;
|
149
|
+
font-style: italic;
|
150
|
+
|
151
|
+
> :last-child {
|
152
|
+
margin-bottom: 0;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
/**
|
157
|
+
* Code formatting
|
158
|
+
*/
|
159
|
+
pre,
|
160
|
+
code {
|
161
|
+
@include relative-font-size(0.9375);
|
162
|
+
border: 1px solid $grey-color-light;
|
163
|
+
border-radius: 3px;
|
164
|
+
background-color: #eef;
|
165
|
+
}
|
166
|
+
|
167
|
+
code {
|
168
|
+
padding: 1px 5px;
|
169
|
+
}
|
170
|
+
|
171
|
+
pre {
|
172
|
+
padding: 8px 12px;
|
173
|
+
overflow-x: auto;
|
174
|
+
|
175
|
+
> code {
|
176
|
+
border: 0;
|
177
|
+
padding-right: 0;
|
178
|
+
padding-left: 0;
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
/**
|
183
|
+
* Wrapper
|
184
|
+
*/
|
185
|
+
.wrapper {
|
186
|
+
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
|
187
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
188
|
+
margin-right: auto;
|
189
|
+
margin-left: auto;
|
190
|
+
padding-right: $spacing-unit / 2;
|
191
|
+
padding-left: $spacing-unit / 2;
|
192
|
+
@extend %clearfix;
|
193
|
+
|
194
|
+
@media screen and (min-width: $on-large) {
|
195
|
+
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
|
196
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
197
|
+
padding-right: $spacing-unit;
|
198
|
+
padding-left: $spacing-unit;
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
202
|
+
/**
|
203
|
+
* Clearfix
|
204
|
+
*/
|
205
|
+
%clearfix:after {
|
206
|
+
content: "";
|
207
|
+
display: table;
|
208
|
+
clear: both;
|
209
|
+
}
|
210
|
+
|
211
|
+
/**
|
212
|
+
* Icons
|
213
|
+
*/
|
214
|
+
|
215
|
+
.orange {
|
216
|
+
color: $orange-color;
|
217
|
+
}
|
218
|
+
|
219
|
+
.grey {
|
220
|
+
color: $grey-color;
|
221
|
+
}
|
222
|
+
|
223
|
+
.svg-icon {
|
224
|
+
width: 16px;
|
225
|
+
height: 16px;
|
226
|
+
display: inline-block;
|
227
|
+
fill: currentColor;
|
228
|
+
padding: 5px 3px 2px 5px;
|
229
|
+
vertical-align: text-bottom;
|
230
|
+
}
|
231
|
+
|
232
|
+
/**
|
233
|
+
* Tables
|
234
|
+
*/
|
235
|
+
table {
|
236
|
+
margin-bottom: $spacing-unit;
|
237
|
+
width: 100%;
|
238
|
+
text-align: $table-text-align;
|
239
|
+
color: lighten($text-color, 18%);
|
240
|
+
border-collapse: collapse;
|
241
|
+
border: 1px solid $grey-color-light;
|
242
|
+
tr {
|
243
|
+
&:nth-child(even) {
|
244
|
+
background-color: lighten($grey-color-light, 6%);
|
245
|
+
}
|
246
|
+
}
|
247
|
+
th,
|
248
|
+
td {
|
249
|
+
padding: ($spacing-unit / 3) ($spacing-unit / 2);
|
250
|
+
}
|
251
|
+
th {
|
252
|
+
background-color: lighten($grey-color-light, 3%);
|
253
|
+
border: 1px solid darken($grey-color-light, 4%);
|
254
|
+
border-bottom-color: darken($grey-color-light, 12%);
|
255
|
+
}
|
256
|
+
td {
|
257
|
+
border: 1px solid $grey-color-light;
|
258
|
+
}
|
259
|
+
}
|