Difference between revisions of "D7 Themes"

From Things and Stuff Wiki
Jump to navigation Jump to search
(Blanked the page)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{techy}}
 
  
== Zentropy ==
 
* http://drupal.org/project/zentropy - good but no sass
 
 
== Basic ==
 
* http://drupal.org/project/basic
 
 
== Sasson ==
 
* http://drupal.org/project/sasson - HTML5, responsive (content first), semantic grid (SASS/SCSS), CSS reset (normalize)
 
** v2 uses [https://github.com/MarcWeber/phamlp phamlp] fork which bundles older Compass.
 
** v3 uses Ruby Sass
 
 
=== Subthemes ===
 
drush sns [name]
 
  generate a subtheme
 
 
Use this Drush command to initalise a Sasson subtheme. Creates in sites/all, rather than respecting current path site context.
 
 
=== v2 ===
 
sasson.info calls (to recheck)
 
* [http://drupalcode.org/project/sasson.git/blob/refs/heads/7.x-2.x:/styles/boilerplate.css sasson/styles/boilerplate.css] - h5bp.com/css
 
* [http://drupalcode.org/project/sasson.git/blob/refs/heads/7.x-2.x:/styles/sasson.scss sasson/styles/sasson.scss] (.info call is to the processed .css, natch)
 
** @imports "css3", "960/grid", @import "base";
 
** https://github.com/nextmat/compass-960-plugin/blob/master/stylesheets/960/_grid.sass
 
 
* sasson/styles/layout/desktop-first/sasson-base.scss sets .page as 960px. for a 100% wrapper, add a div in subtheme/templates/page.tpl.php
 
 
@import "compass/css3"; // CSS3 mixins (http://compass-style.org/reference/compass/css3/)
 
// @import "partials/mixins"; // Theme partial mixins (check your /partials directory)
 
 
=== v3 ===
 
* http://drupalcode.org/project/sasson.git/tree/refs/heads/7.x-3.x
 
* http://drupalcode.org/project/sasson.git/blob/refs/heads/7.x-3.x:/stylesheets/grid/_gridy.scss
 
* http://drupal.org/node/1737170
 
 
$grid-width: 960px !default;
 
$columns: 16 !default;
 
$gutter-width: 20px !default;
 
 
$flow: left !default;
 
$opos: opposite-position($flow);
 
$box-sizing: border-box;
 
$box-sizing-polyfill-path: "" !default;
 
$ie7-support: false !default;
 
 
@include container
 
@include nested-container
 
@include grid($column-span, $column-position: false, $parent-columns: false)
 
 
@include row
 
@include unrow
 
 
@include grid-cell
 
@include gridy-background
 
 
== Omega==
 
* http://drupal.org/project/omega
 
 
== Other ==
 
Lost a lot of theme info when old wiki crashed. Tod; rebuild up interesting theme list.
 
 
* http://drupal.org/project/boron
 
* http://drupal.org/project/golden_grid
 

Latest revision as of 23:37, 24 November 2017