File tree Expand file tree Collapse file tree 6 files changed +64
-7
lines changed Expand file tree Collapse file tree 6 files changed +64
-7
lines changed Original file line number Diff line number Diff line change 15
15
16
16
< div class ="trigger ">
17
17
{% for page in site.pages %}
18
- {% if page.title %}
19
- < a class ="page-link " href ="{{ page.url | prepend: site.baseurl }} "> {{ page.title }}</ a >
18
+ {% if page.menuTitle %}
19
+ < a class ="page-link " href ="{{ page.url | prepend: site.baseurl }} "> {{ page.menuTitle }}</ a >
20
20
{% endif %}
21
21
{% endfor %}
22
22
</ div >
Original file line number Diff line number Diff line change @@ -128,20 +128,25 @@ blockquote {
128
128
*/
129
129
pre ,
130
130
code {
131
- font-size : 90 % ;
131
+ font-size : 85 % ;
132
132
border : 1px solid $grey-color-light ;
133
133
border-radius : 3px ;
134
134
background-color : #eef ;
135
135
font-family : $code-font-family ;
136
136
}
137
137
138
+ pre code {
139
+ background-color : transparent ;
140
+ }
141
+
138
142
code {
139
143
padding : 2px 5px ;
140
144
}
141
145
142
146
pre {
143
147
padding : 8px 12px ;
144
148
overflow-x : scroll ;
149
+ line-height : 1em ;
145
150
146
151
> code {
147
152
border : 0 ;
Original file line number Diff line number Diff line change 197
197
margin-bottom : $spacing-unit ;
198
198
}
199
199
200
- .post-title {
200
+ h1 , .post-title {
201
201
font-size : 42px ;
202
202
letter-spacing : -1px ;
203
203
line-height : 1 ;
204
+ margin-bottom : $spacing-unit ;
204
205
205
206
@include media-query ($on-laptop ) {
206
207
font-size : 36px ;
Original file line number Diff line number Diff line change 1
1
---
2
2
layout : page
3
- title : About
3
+ title : About Chip
4
+ menuTitle : About
4
5
permalink : /about/
5
6
---
6
7
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ $spacing-unit: 30px;
15
15
16
16
$text-color : #242B34 ;
17
17
$header-color : #475363 ;
18
- $background-color : #fdfdfd ;
18
+ $background-color : #f6f6f6 ;
19
19
$brand-color : #DF8138 ;
20
20
21
21
$grey-color : #828282 ;
22
- $grey-color-light : lighten ($grey-color , 40 % );
22
+ $grey-color-light : lighten ($grey-color , 35 % );
23
23
$grey-color-dark : darken ($grey-color , 25% );
24
24
25
25
// Width of the content area
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ menuTitle : Docs
4
+ title : Chip Documentation
5
+ ---
6
+
7
+ ## Getting Started
8
+
9
+
10
+
11
+ ## Many Modules
12
+
13
+ Chip is made up of many smaller modules. These modules are created such that you could roll your own framework if you
14
+ wanted to. But the real benefit is that each module is focused on one specific job.
15
+
16
+ * ** [ chip-js] ( chip-js/ ) ** A powerful JavaScript framework
17
+
18
+ * ** [ fragments-js] ( fragments-js/ ) ** An ultra-fast templating and data-binding library for front-end JavaScript
19
+ applications.
20
+
21
+ * ** [ observations-js] ( observations-js/ ) ** Observes simplified JavaScript expressions and triggers callbacks when the
22
+ returned value changes.
23
+
24
+ * ** [ expressions-js] ( expressions-js/ ) ** Converts simplified JavaScript expressions into executable functions for
25
+ JavaScript frameworks.
26
+
27
+ * ** [ differences-js] ( differences-js/ ) ** Checks if there are any differences between two objects and provides the
28
+ difference.
29
+
30
+ * ** [ built-ins] ( built-ins/ ) ** Built in binders, formatters, and animations for fragments.js-based frameworks.
31
+
32
+ * ** [ routes-js] ( routes-js/ ) ** A little standalone routing library, used in chip.js
33
+
34
+ * ** [ chip-utils] ( chip-utils/ ) ** A few basic utilities for use within chip-supported libraries.
35
+
36
+ ```
37
+ chip-js
38
+ │
39
+ ├──fragments-js
40
+ │ │
41
+ │ └──observations-js
42
+ │ │
43
+ │ ├──expressions-js
44
+ │ │
45
+ │ └──differences-js
46
+ │
47
+ ├──built-ins
48
+ │
49
+ └──routes-js
50
+ ```
You can’t perform that action at this time.
0 commit comments