gnu-social/theme
Robin Millette 8c2473a227 Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev into 0.8.x 2009-05-24 04:44:52 -04:00
..
base Rearranged attachment info to only appear on each applicable notice page and thru an ajax popup. 2009-05-24 04:43:34 -04:00
biz Updated primary and secondary styles for biz, cloudy, h4ck3r, otalk, 2009-05-21 00:18:11 +00:00
cloudy Updated primary and secondary styles for biz, cloudy, h4ck3r, otalk, 2009-05-21 00:18:11 +00:00
default Changing opacity to 1 only on the hovered notice item 2009-05-24 01:53:08 +00:00
h4ck3r Updated primary and secondary styles for biz, cloudy, h4ck3r, otalk, 2009-05-21 00:18:11 +00:00
identica Changing opacity to 1 only on the hovered notice item 2009-05-24 01:53:08 +00:00
iphone Make stuff work with no base 2009-04-14 16:02:09 -04:00
otalk Updated primary and secondary styles for biz, cloudy, h4ck3r, otalk, 2009-05-21 00:18:11 +00:00
pigeonthoughts Updated primary and secondary styles for biz, cloudy, h4ck3r, otalk, 2009-05-21 00:18:11 +00:00
readme.txt Updated instructions for creating a theme. Removed earthy theme ~ 2009-05-14 20:22:04 +00:00

readme.txt

/** Howto: create a laconica theme
 *
 * @package   Laconica
 * @author Sarven Capadisli <csarven@controlyourself.ca>
 * @copyright 2009 Control Yourself, Inc.
 * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
 * @link      http://laconi.ca/
 */

Location of key paths and files under theme/:

./base/css/
./base/css/display.css
./base/images/

./default/css/
./default/css/display.css
./default/images/

./base/display.css contains layout, typography rules:
Only alter this file if you want to change the layout of the site. Please note that, any updates to this in future laconica releases may not be compatible with your version.

./default/css/display.css contains only the background images and colour rules:
This file is a good basis for creating your own theme.

Let's create a theme:

1. To start off, copy over the default theme:
cp -r default mytheme

2. Edit your mytheme stylesheet:
nano mytheme/css/display.css

a) Search and replace your colours and background images, or
b) Create your own layout either importing a separate stylesheet (e.g., change to @import url(base.css);) or simply place it before the rest of the rules.

4. Set /config.php to load 'mytheme':
$config['site']['theme'] = 'mytheme';