Skip to content

Instantly share code, notes, and snippets.

View notslang's full-sized avatar
💭
I may be slow to respond.

Sean Lang notslang

💭
I may be slow to respond.
View GitHub Profile
@notslang
notslang / arrows.less
Created April 17, 2012 03:11
code for arrows in pure LESS
//arrows
@arrowColor: gray;
@arrowSize: 10px;
.arrowUp, .arrowDown, .arrowRight, .arrowLeft {
width: 0;
height: 0;
}
.arrowUp, .arrowDown {
@notslang
notslang / path template.php
Created April 17, 2012 00:46
basic template for PATH page
<?php
require 'path.php';
$html = new path;
echo '<!DOCTYPE html>';
$html =
['html',
['head',
@notslang
notslang / html template.html
Created April 17, 2012 00:42
html template
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>HTML Template</title>
<link href="" rel="stylesheet" type="text/css" />
<style type="text/css"></style>
</head>
<body>