README.txt |
README.txt |
|
Zenophile
by Garrett Albright
My Drupal user page:
http://drupal.org/user/191212
This module's project page:
http://drupal.org/project/Zenophile
Zenophile allows themers to very easily create Zen subthemes without all the
tedious file copying… |
sidebars-left-fixed.css |
zenophile_sidebars/css/sidebars-left-fixed.css |
|
/* Fixed layout; both sidebars on left */
#page, #page-wrapper, .region-page-closure, body.no-sidebars #content {
width: PAGEpx;
}
div.region-sidebar-first {
width: LSB-SBpx;
margin-right: -LSB-SBpx;
}
div.region-sidebar-second {
width:… |
sidebars-left-liquid.css |
zenophile_sidebars/css/sidebars-left-liquid.css |
|
/* Liquid layout; both sidebars on left */
div.region-sidebar-first {
width: LSB-SBpx;
margin-right: -LSB-SBpx;
}
div.region-sidebar-second {
float: left;
width: RSB-SBpx;
}
body.two-sidebars div.region-sidebar-second {
margin-left:… |
sidebars-normal-fixed.css |
zenophile_sidebars/css/sidebars-normal-fixed.css |
|
/* Fixed layout; standard sidebar placement */
#page, #page-wrapper, .region-page-closure, body.no-sidebars #content {
width: PAGEpx;
}
div.region-sidebar-first {
width: LSB-SBpx;
margin-right: -LSB-SBpx;
}
div.region-sidebar-second {
… |
sidebars-normal-liquid.css |
zenophile_sidebars/css/sidebars-normal-liquid.css |
|
/* Liquid layout; standard sidebar placement */
div.region-sidebar-first {
width: LSB-SBpx;
}
div.region-sidebar-second {
width: RSB-SBpx;
}
body.sidebar-first #content div.section, body.two-sidebars #content div.section {
padding-left:… |
sidebars-right-fixed.css |
zenophile_sidebars/css/sidebars-right-fixed.css |
|
/* Fixed layout; both sidebars on right */
#page, #page-wrapper, .region-page-closure, body.no-sidebars #content {
width: PAGEpx;
}
div.region-sidebar-first {
width: LSB-SBpx;
}
div.region-sidebar-second {
width: RSB-SBpx;
margin-left:… |
sidebars-right-liquid.css |
zenophile_sidebars/css/sidebars-right-liquid.css |
|
/* Liquid layout; both sidebars on right */
div.region-sidebar-first {
width: LSB-SBpx;
float: right;
margin-right: 0px;
}
div.region-sidebar-second {
width: RSB-SBpx;
}
div.region-sidebar-first div.section {
margin-left: 20px;
… |
zenophile.info |
zenophile.info |
|
name = Zenophile
description = Quickly create Zen subthemes.
package = Development
core = 7.x |
zenophile.install |
zenophile.install |
|
Zenophile's .install file. |
zenophile.module |
zenophile.module |
|
Creates Zen subthemes quickly and easily. |
zenophile_midnight.info |
zenophile_midnight/zenophile_midnight.info |
|
name = Zenophile Midnight
description = Aids in creating light-on-dark color schemes with Zenophile.
package = Development
core = 7.x
dependencies[] = zenophile |
zenophile_midnight.module |
zenophile_midnight/zenophile_midnight.module |
|
Aid to create light-on-dark Zen-based themes with Zenophile. |
zenophile_sidebars.info |
zenophile_sidebars/zenophile_sidebars.info |
|
name = Zenophile Sidebars
description = Adds controls to adjust the width and placement of the sidebars and page.
package = Development
core = 7.x
dependencies[] = zenophile |
zenophile_sidebars.module |
zenophile_sidebars/zenophile_sidebars.module |
|
Adds controls to adjust the width and placement of the sidebars and page in
themes created with Zenophile. |
zen_midnight.css |
zenophile_midnight/css/zen_midnight.css |
|
/**
* Basic site elements
*/
body {
background-color: black;
color: white;
}
/**
* Links
*/
a {
color: #99f;
}
a:visited {
color: #ebf;
}
a:active {
color: #f99;
}
#skip-to-nav a:link, #skip-to-nav a:visited {
color:… |