Skip to content

Instantly share code, notes, and snippets.

View abelb's full-sized avatar

A Burton abelb

View GitHub Profile
@abelb
abelb / html.tpl.php
Created October 17, 2012 21:11 — forked from pascalduez/html.tpl.php
Drupal 7 — HTML5 html.tpl.php
<!DOCTYPE html>
<html<?php print $html_attributes; ?>>
<head>
<?php print $head; ?>
<title><?php print $head_title; ?></title>
<?php print $styles; ?>
<?php print $scripts; ?>
</head>
<body<?php print $body_attributes;?>>
@abelb
abelb / pager.scss
Created August 8, 2012 22:43
drupal pager scss mixin
@mixin pager($radius: 2px, $background_1: #F8F8F8, $background_2: #ECECEC, $border: #c6c6c6, $font-color: #999) {
// Pager list-style
li {
margin-right: 5px;
padding: 0;
&.last {
margin-right: 0;
}