jekyll-california 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -5
- data/_layouts/default.html +0 -1
- data/_layouts/page.html +2 -0
- data/_sass/_colors-tufte.scss +12 -21
- data/_sass/_main.scss +19 -4
- data/_sass/_variables.scss +10 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d112ed756d4cc23cd7f7e3a15cd9f390d3b9b27894e4ec53c4c5abe0f291a4f
|
|
4
|
+
data.tar.gz: '079b77ef7bd9c0e9eea51c8e1bd71f3dd3908dc21f2cd38ce9e54b28ee3149b6'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: faecdacfb774b4ce42a672747439287a144351e10b4902ee6515154a60dd56453fdae6f96fc038e2af378300f39bd5e80611335769371510d6becdd234eefa4c
|
|
7
|
+
data.tar.gz: ceadc23e45927d6154f581e2da0e7dcfccd2824b43cbc7624a3288eb0935cd18ad90e7ee0ff601b4bce3a01a1ebaab321f8987a8cda3eec69e448b7ae3316ce7
|
data/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
1
|
+
# california
|
|
6
2
|
|
|
3
|
+
This is a theme inspired by my time in California. I use it for my personal
|
|
4
|
+
website which you can see at https://chenna.me. Feel free use to use it and
|
|
5
|
+
remix it as you wish.
|
|
7
6
|
|
|
8
7
|
## Installation
|
|
9
8
|
|
data/_layouts/default.html
CHANGED
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
<!--[if lt IE 9]>
|
|
10
10
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
11
11
|
<![endif]-->
|
|
12
|
-
<link href="https://fonts.googleapis.com/css?family=Karla&display=swap" rel="stylesheet">
|
|
13
12
|
<link href="/assets/style.css" rel="stylesheet" />
|
|
14
13
|
</head>
|
|
15
14
|
|
data/_layouts/page.html
CHANGED
data/_sass/_colors-tufte.scss
CHANGED
|
@@ -4,52 +4,43 @@ html, body {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
a, a:visited, a:active {
|
|
7
|
-
color:
|
|
8
|
-
border-color: #eee8d5;
|
|
7
|
+
color: $royal-blue;
|
|
9
8
|
}
|
|
10
9
|
|
|
11
10
|
a:hover {
|
|
12
|
-
background-color:
|
|
13
|
-
|
|
14
|
-
color: #2aa198;
|
|
11
|
+
background-color: $a-background;
|
|
12
|
+
color: $utah-red;
|
|
15
13
|
}
|
|
16
14
|
|
|
17
15
|
h1, h2, h3 {
|
|
18
|
-
color:
|
|
16
|
+
color: $headings;
|
|
17
|
+
font-weight:bold;
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
h1 a, h1 a:visited, h1 a:active {
|
|
22
|
-
color:
|
|
21
|
+
color: $utah-red;
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
h1 a:hover {
|
|
26
|
-
background-color:
|
|
27
|
-
border-color: #eee8d5;
|
|
25
|
+
background-color: $a-background;
|
|
28
26
|
}
|
|
29
27
|
|
|
30
|
-
article h1 a
|
|
31
|
-
color:
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
blockquote {
|
|
35
|
-
border-color: #cb4b16;
|
|
28
|
+
article.post h1 a {
|
|
29
|
+
color: $cerulean-blue;
|
|
36
30
|
}
|
|
37
31
|
|
|
38
32
|
#sidebar a:hover {
|
|
39
|
-
color:
|
|
40
|
-
background-color: #eee8d5;
|
|
33
|
+
color: $utah-red;
|
|
41
34
|
}
|
|
42
35
|
|
|
43
|
-
|
|
44
|
-
|
|
36
|
+
p code {
|
|
37
|
+
background-color: #fff8ff;
|
|
45
38
|
}
|
|
46
39
|
|
|
47
40
|
|
|
48
|
-
|
|
49
41
|
/*** Pygments ***/
|
|
50
42
|
.highlight{
|
|
51
43
|
margin-bottom: 15px;
|
|
52
|
-
overflow-y:auto;
|
|
53
44
|
}
|
|
54
45
|
.highlight {
|
|
55
46
|
background: #fffff8; }
|
data/_sass/_main.scss
CHANGED
|
@@ -28,7 +28,11 @@ table {
|
|
|
28
28
|
border-spacing: 0;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
// Import stuff
|
|
32
|
+
@import 'variables';
|
|
31
33
|
|
|
34
|
+
// fonts
|
|
35
|
+
@import url('https://fonts.googleapis.com/css?family=Karla&display=swap');
|
|
32
36
|
|
|
33
37
|
/*** Basics ***/
|
|
34
38
|
body {
|
|
@@ -41,11 +45,10 @@ body {
|
|
|
41
45
|
|
|
42
46
|
a, a:active, a:visited {
|
|
43
47
|
text-decoration: none;
|
|
44
|
-
border-bottom: 1px solid #839496;
|
|
45
48
|
padding-bottom: 2px;
|
|
46
49
|
}
|
|
47
50
|
a:hover {
|
|
48
|
-
background-color:
|
|
51
|
+
background-color: $cerulean-blue;
|
|
49
52
|
color: #000000;
|
|
50
53
|
}
|
|
51
54
|
|
|
@@ -59,7 +62,19 @@ sup { vertical-align: super; font-size: 0.85em; }
|
|
|
59
62
|
sub { vertical-align: sub; font-size: 0.85em; }
|
|
60
63
|
|
|
61
64
|
code {
|
|
62
|
-
|
|
65
|
+
font: 0.85em Monaco, Courier, Monospace;
|
|
66
|
+
overflow-x: auto;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
pre {
|
|
70
|
+
overflow: auto;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.code-wrap code {
|
|
74
|
+
white-space: pre-wrap;
|
|
75
|
+
white-space: -moz-pre-wrap;
|
|
76
|
+
white-space: -pre-wrap;
|
|
77
|
+
white-space: -o-pre-wrap;
|
|
63
78
|
}
|
|
64
79
|
|
|
65
80
|
blockquote {
|
|
@@ -163,7 +178,7 @@ h3 {
|
|
|
163
178
|
|
|
164
179
|
#sidebar .active {
|
|
165
180
|
font-weight: bold;
|
|
166
|
-
color:
|
|
181
|
+
color: $utah-red;
|
|
167
182
|
}
|
|
168
183
|
|
|
169
184
|
/*** Posts ***/
|
data/_sass/_variables.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-california
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chenna Kautilya
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-06-
|
|
11
|
+
date: 2019-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|