Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
leafo committed Nov 3, 2012
1 parent bfde736 commit 6b6bd25
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion scss.inc.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

class scssc {
static public $VERSION = "v0.0.3";
static public $VERSION = "v0.0.4";

static protected $operatorNames = array(
'+' => "add",
Expand Down
4 changes: 0 additions & 4 deletions site/Makefile

This file was deleted.

1 change: 0 additions & 1 deletion site/Tuprules.tup

This file was deleted.

7 changes: 6 additions & 1 deletion site/site.moon
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
require "sitegen"

tools = require "sitegen.tools"

sitegen.create_site =>
@current_version = "0.0.3"
@current_version = "0.0.4"
@title = "SCSS Compiler in PHP"

scssphp = tools.system_command "pscss < %s > %s", "css"
build scssphp, "style.scss", "style/style.css"

deploy_to "[email protected]", "www/scssphp/"

add "docs/index.md"
Expand Down
10 changes: 7 additions & 3 deletions site/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ body {
@include autograd($btn_color);

position: relative;
top: -1px * $height;
top: -1 * $height;

padding: 8px 20px;
border-radius: 8px;
Expand All @@ -137,7 +137,7 @@ body {

&:active {
box-shadow: 0px $height - $depress 0px darken($btn_color, 30%), inset 0px -1px 0px rgba(255,255,255, 0.2), inset 0px 1px 0px rgba(0,0,0, 0.2);
top: -1px * ($height - $depress);
top: -1 * ($height - $depress);
}

.top {
Expand Down Expand Up @@ -168,7 +168,7 @@ body {
}

h2, h3 {
margin: 20px 0px 5px 0px;
margin: 20px 0;
}

h1, h2, h3 {
Expand All @@ -190,6 +190,10 @@ body {
color: lighten(#DB1C4A, 10%);
}
}

pre {
margin: 20px 0;
}
}

.footer {
Expand Down
5 changes: 0 additions & 5 deletions site/www/style/Tupfile

This file was deleted.

0 comments on commit 6b6bd25

Please sign in to comment.