pithy 0.1.0 → 0.1.2

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
  SHA1:
3
- metadata.gz: 2544d2d0552579cf1f220d0c987b55174490ced6
4
- data.tar.gz: f682c957ef9b557ee061b7c1ef1a2e5061d716b8
3
+ metadata.gz: 0366b11fbd3f0d2a06433cde3141271720687c74
4
+ data.tar.gz: b2e13c3de829f98dc3ad429d332bfe380f4d7790
5
5
  SHA512:
6
- metadata.gz: ae36cd08e1f8864c7991ceabb131e3ba821e6973fb24a6aba218f2c73677ffd7d357991d64d263877e20b8783cab316ecdba992741b3df0e2c4d7d79f53eae3d
7
- data.tar.gz: 0d83d4167053defca7aeacf20385b9686a046bdfd3ada68c3a2463fac9bbba54fb5950db419579a52aac72b47789f179d68487cd466a3fd0a74bbd6c1b1faaa2
6
+ metadata.gz: 33e246e68ea3641f726cd4c9f5c8c76df972c993d54960e76e8d62eefc7abacfb72e587449db65120aca57dad28acfb6d9a9e4941adfeaec88b93d1ae2712d43
7
+ data.tar.gz: 7eb913b0b696bc2e6a00d887570d0bc80ff14c7ec512e2bf8ff0ab48c20745d1b13da8d7bd9301750c9372c5f9fb4b39c7f8ec6c59e701a998c1afa259a02702
data/_includes/head.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7
7
  <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
8
8
 
9
- <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
9
+ <link rel="stylesheet" href="{{ "/assets/css/main.css" | prepend: site.baseurl }}">
10
10
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
11
11
  <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
12
12
  <script src="/scripts/jquery-1.11.2.min.js"></script>
@@ -50,17 +50,17 @@
50
50
  <ul class="social-links">
51
51
  <li>
52
52
  <a href="https://github.com/{{ site.github_username }}" title="Github">
53
- <img width="19px" height="19px" src="/images/github.png"/>
53
+ <img width="19px" height="19px" src="/assets/img/github.png"/>
54
54
  </a>
55
55
  </li>
56
56
  <li>
57
57
  <a href="/feed.xml" title="RSS">
58
- <img width="19px" height="19px" src="/images/rss.png"/>
58
+ <img width="19px" height="19px" src="/assets/img/rss.png"/>
59
59
  </a>
60
60
  </li>
61
61
  <li>
62
62
  <a href="https://twitter.com/{{ site.twitter_username }}" title="Twitter">
63
- <img width="19px" height="19px" src="/images/twitter.png"/>
63
+ <img width="19px" height="19px" src="/assets/img/twitter.png"/>
64
64
  </a>
65
65
  </li>
66
66
  </ul>
@@ -0,0 +1,53 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ @charset "utf-8";
5
+
6
+
7
+
8
+ // Our variables
9
+ $base-font-family: "Raleway",Arial,sans-serif;
10
+ $base-font-size: 16px;
11
+ $small-font-size: $base-font-size * 0.875;
12
+ $base-line-height: 1.5;
13
+
14
+ $spacing-unit: 30px;
15
+
16
+ $text-color: #111;
17
+ $background-color: #fdfdfd;
18
+ $brand-color: #2a7ae2;
19
+
20
+ $grey-color: #828282;
21
+ $grey-color-light: lighten($grey-color, 40%);
22
+ $grey-color-dark: darken($grey-color, 25%);
23
+ $blue-color: #515865;
24
+
25
+ // Width of the content area
26
+ $content-width: 800px;
27
+
28
+ $on-palm: 600px;
29
+ $on-laptop: 800px;
30
+
31
+
32
+
33
+ // Using media queries with like this:
34
+ // @include media-query($on-palm) {
35
+ // .wrapper {
36
+ // padding-right: $spacing-unit / 2;
37
+ // padding-left: $spacing-unit / 2;
38
+ // }
39
+ // }
40
+ @mixin media-query($device) {
41
+ @media screen and (max-width: $device) {
42
+ @content;
43
+ }
44
+ }
45
+
46
+
47
+
48
+ // Import partials from `sass_dir` (defaults to `_sass`)
49
+ @import
50
+ "base",
51
+ "layout",
52
+ "syntax-highlighting"
53
+ ;
@@ -0,0 +1,152 @@
1
+ .year {
2
+ color:rgb(0,180,0);
3
+ margin-left:35px;
4
+ font-weight:lighter;
5
+ }
6
+ .time {
7
+ color:#1abc9c;
8
+ letter-spacing:1px;
9
+ }
10
+ .link {
11
+ margin-left:13.5em;
12
+ margin-top:-24px;
13
+ }
14
+ .link a {
15
+ text-shadow:0 0 1px;
16
+ letter-spacing:2px;
17
+ transition:padding-left 0.25s;
18
+ -webkit-transition:padding-left 0.25s;
19
+ -moz-transition:padding-left 0.25s;
20
+ -o-transition:padding-left 0.25s;
21
+ }
22
+ .link a:hover {
23
+ color:#00D809;
24
+ padding-left:15px;
25
+ }
26
+ .timing {
27
+ position:relative;
28
+ margin-left:70px;
29
+ font-size:18px;
30
+ height:6em;
31
+ }
32
+ .timing:before {
33
+ content:"";
34
+ width:5px;
35
+ left:8em;
36
+ top:10px;
37
+ bottom:-35px;
38
+ background:#e6e6e6;
39
+ position:absolute;
40
+ }
41
+ .point-time {
42
+ position:absolute;
43
+ width:15px;
44
+ height:15px;
45
+ top:5px;
46
+ left:8em;
47
+ background:#1c87bf;
48
+ margin-left:-5px;
49
+ border-radius:100%;
50
+ box-shadow:0 0 0 4px #fff;
51
+ }
52
+ .point1 {background-color:#f6393f;}
53
+ .point2 {background-color:#1c87bf;}
54
+ .point3 {background-color:#95c91e;}
55
+ .point4 {background-color:#ffb902;}
56
+ .point5 {background-color:#d32d93;}
57
+ @media (max-width:875px) {
58
+ .year {
59
+ margin-left:2px;
60
+ margin-top:-5px;
61
+ margin-bottom:15px;
62
+ font-size:30px;
63
+ }
64
+ .time {
65
+ font-size:16px;
66
+ }
67
+ .timing {
68
+ margin-left:29px;
69
+ }
70
+ .timing:before {
71
+ left:4em;
72
+ width:4px;
73
+ }
74
+ .point-time {
75
+ left:4em;
76
+ }
77
+ .point-time {
78
+ width:13px;
79
+ height:13px;
80
+ margin-left:-4px;
81
+ box-shadow:0 0 0 3px #fff;
82
+ }
83
+ .link {
84
+ margin-left:6.45em;
85
+ margin-top:-20px;
86
+ font-size:16px;
87
+ }
88
+ .link a:hover {
89
+ padding-left:0;
90
+ }
91
+ }
92
+
93
+ .category {
94
+ color:#1BAF69;
95
+ text-shadow:0 0 1px;
96
+ font-weight:600;
97
+ text-transform:Capitalize;
98
+ margin-top:35px;
99
+ }
100
+ .category-box-sub,.category-sub {
101
+ list-style:none;
102
+ }
103
+ .category-box-sub {
104
+ font-size:20px;
105
+ margin-left:-38px;
106
+ }
107
+ .category-sub {
108
+ color:#1abc9c;
109
+ letter-spacing:1px;
110
+ font-size:18px;
111
+ margin-left:-39px;
112
+ }
113
+ .category-box-sub a {
114
+ text-shadow:0 0 1px;
115
+ letter-spacing:2px;
116
+ text-transform:Capitalize;
117
+ transition:padding-left 0.25s;
118
+ -webkit-transition:padding-left 0.25s;
119
+ -moz-transition:padding-left 0.25s;
120
+ -o-transition:padding-left 0.25s;
121
+ }
122
+ .category-box-sub a:hover {
123
+ color:#00D809;
124
+ padding-left:10px;
125
+ }
126
+ .category-sub-title {
127
+ text-shadow:0 0 1px;
128
+ letter-spacing:2px;
129
+ word-break:break-all;
130
+ transition:padding-left 0.25s;
131
+ -webkit-transition:padding-left 0.25s;
132
+ -moz-transition:padding-left 0.25s;
133
+ -o-transition:padding-left 0.25s;
134
+ }
135
+ .category-sub-title:hover {
136
+ padding-left:10px;
137
+ }
138
+ #line {
139
+ margin-top:35px;
140
+ margin-bottom:30px;
141
+ }
142
+ @media (max-width:875px) {
143
+ .category-sub {
144
+ font-size:16px;
145
+ margin-left:-35px;
146
+ }
147
+ .category-box-sub {
148
+ margin-left:-35px;
149
+ }
150
+ .category-box-sub a:hover,.category-sub-title:hover {
151
+ padding-left:0;
152
+ }
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pithy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregor Sturm
@@ -70,6 +70,12 @@ files:
70
70
  - _sass/_base.scss
71
71
  - _sass/_layout.scss
72
72
  - _sass/_syntax-highlighting.scss
73
+ - assets/css/main.scss
74
+ - assets/css/page.css
75
+ - assets/img/Jekyll-Pithy.png
76
+ - assets/img/github.png
77
+ - assets/img/rss.png
78
+ - assets/img/twitter.png
73
79
  homepage: https://github.com/grst/Jekyll-Pithy
74
80
  licenses:
75
81
  - MIT