Skip to content

Instantly share code, notes, and snippets.

View RustBeard's full-sized avatar

Marek RustBeard

  • Poland, Gdansk
View GitHub Profile
@RustBeard
RustBeard / README.md
Last active December 31, 2018 19:24
Ideal margins

Ideal margins

Sass function that calculates margin from letter.

Syntax

textMargin($top_or_bot, $margin, $fontSize, $lineHeight)
eg.: margin-bottom: textMargin('bot', 20, 2.25, 1.5);

This returns margin in "em" unit.

Values and variables

@RustBeard
RustBeard / page--yourcontenttype.tpl.php
Created January 8, 2016 12:36
Print other node in Drupal template
<?php
$nid = 814; //id of node you want to load
$node = node_load($nid);
print render(node_view($node));
?>