|
@@ -1,16 +1,39 @@
|
|
|
+Setup
|
|
|
+-----
|
|
|
+
|
|
|
+For new setup, begin with installing dependencies as follows:
|
|
|
+
|
|
|
+ $ cd ~/CouchApps/kleks/admin
|
|
|
+ $ kanso install
|
|
|
+ $ cd ~/CouchApps/kleks/site
|
|
|
+ $ kanso install
|
|
|
+
|
|
|
+Push the current app (site or admin) to development CouchDB
|
|
|
+
|
|
|
+ $ kanso push
|
|
|
+
|
|
|
+Once configure a `.kansorc` file with a production config named `live`
|
|
|
+
|
|
|
+ $ kanso push live
|
|
|
+
|
|
|
Fonts
|
|
|
-----
|
|
|
|
|
|
-**Google Fonts URL**
|
|
|
+**Google Fonts URL** for some review fonts:
|
|
|
+
|
|
|
+ http://www.google.com/webfonts#ReviewPlace:refine/Collection:Dosis:200,400,700|Lato:300,400,700|Droid+Serif:400,700,400italic,700italic
|
|
|
+
|
|
|
+In CSS `.styl` file we are using the _Lato_ font:
|
|
|
|
|
|
-http://www.google.com/webfonts#ReviewPlace:refine/Collection:Dosis:200,400,700|Lato:300,400,700|Droid+Serif:400,700,400italic,700italic
|
|
|
+ @import url('http://fonts.googleapis.com/css?family=Lato:300,400,700')
|
|
|
|
|
|
- font-family: 'Lato', sans-serif;
|
|
|
- font-weight: normal;
|
|
|
- font-size: 18px;
|
|
|
- letter-spacing: 0em;
|
|
|
- word-spacing: 0.2em;
|
|
|
- line-height: 1.5;
|
|
|
+ body
|
|
|
+ font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif
|
|
|
+ font-weight: 300
|
|
|
+ font-size: 16px
|
|
|
+ letter-spacing: 0em
|
|
|
+ word-spacing: 0.2em
|
|
|
+ line-height: 1.5em
|
|
|
|
|
|
|
|
|
Donation URL
|