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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab6467ed0268674d1e7d6973acd77897e9a26ac8e7e8067aaccb247897c7926b
4
- data.tar.gz: 2c4925b712e9991aa466f8a46b0b72ce056303d0bccaff8f5451a78e5ca18dff
3
+ metadata.gz: 4d112ed756d4cc23cd7f7e3a15cd9f390d3b9b27894e4ec53c4c5abe0f291a4f
4
+ data.tar.gz: '079b77ef7bd9c0e9eea51c8e1bd71f3dd3908dc21f2cd38ce9e54b28ee3149b6'
5
5
  SHA512:
6
- metadata.gz: 8c0202607f7ea00c14fc540b173e58665b05f929cccba1b6e37d61a5043ba32134cc92291acd526302e4c6e844e2d002ae742256d206b8d4922c12820c1612e4
7
- data.tar.gz: 341de401e58a57aecd2cc49ce9f90ecc9a182b0bd3fef0b453cfe23d0d6552e50838e5b41678635869053e64958e9b0a795ffb1dc12dd5bd49e0d9c644eb3b3d
6
+ metadata.gz: faecdacfb774b4ce42a672747439287a144351e10b4902ee6515154a60dd56453fdae6f96fc038e2af378300f39bd5e80611335769371510d6becdd234eefa4c
7
+ data.tar.gz: ceadc23e45927d6154f581e2da0e7dcfccd2824b43cbc7624a3288eb0935cd18ad90e7ee0ff601b4bce3a01a1ebaab321f8987a8cda3eec69e448b7ae3316ce7
data/README.md CHANGED
@@ -1,9 +1,8 @@
1
- # california
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
 
@@ -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
 
@@ -4,4 +4,6 @@ layout: default
4
4
 
5
5
  {{ content }}
6
6
 
7
+ {% if page.date %}
7
8
  <p class="meta">Posted on <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"><span class="postdate">{{ page.date | date: "%b %d, %Y" }}</span></time></p>
9
+ {% endif %}
@@ -4,52 +4,43 @@ html, body {
4
4
  }
5
5
 
6
6
  a, a:visited, a:active {
7
- color: #2aa198;
8
- border-color: #eee8d5;
7
+ color: $royal-blue;
9
8
  }
10
9
 
11
10
  a:hover {
12
- background-color: #eee8d5;
13
- border-color: #eee8d5;
14
- color: #2aa198;
11
+ background-color: $a-background;
12
+ color: $utah-red;
15
13
  }
16
14
 
17
15
  h1, h2, h3 {
18
- color: #cb4b16;
16
+ color: $headings;
17
+ font-weight:bold;
19
18
  }
20
19
 
21
20
  h1 a, h1 a:visited, h1 a:active {
22
- color: #cb4b16;
21
+ color: $utah-red;
23
22
  }
24
23
 
25
24
  h1 a:hover {
26
- background-color: #eee8d5;
27
- border-color: #eee8d5;
25
+ background-color: $a-background;
28
26
  }
29
27
 
30
- article h1 a.anchor {
31
- color: #111111;
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: #cb4b16;
40
- background-color: #eee8d5;
33
+ color: $utah-red;
41
34
  }
42
35
 
43
- #footer {
44
- border-color: #eee8d5;
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; }
@@ -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: #839496;
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
- font: 0.85em Monaco, Courier, Monospace;
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: #cb4b16;
181
+ color: $utah-red;
167
182
  }
168
183
 
169
184
  /*** Posts ***/
@@ -0,0 +1,10 @@
1
+
2
+ // Font family
3
+
4
+
5
+ //
6
+ $royal-blue: #4169e1;
7
+ $cerulean-blue: #2a52be;
8
+ $headings: #2a2a2a;
9
+ $utah-red: #d3003f;
10
+ $a-background: #eee8d5;
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.1.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-27 00:00:00.000000000 Z
11
+ date: 2019-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll