This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get Current | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install libjpeg-progs libjpeg62 libjpeg62-dev libsdl1.2-dev php5-dev build-essential unzip | |
#Install Ruby on Rails, subversion & ncurses | |
sudo apt-get install subversion ruby libcurses-ruby | |
#New codec and secure tmp folders |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Cross-browser implementation of the "display: inline-block" CSS property. */ | |
/* See http://www.w3.org/TR/CSS21/visuren.html#propdef-display for details. */ | |
/* Tested on IE 6 & 7, FF 1.5 & 2.0, Safari 2 & 3, Webkit, and Opera 9. */ | |
/* Gecko hack; Pre-FF3 Gecko uses -moz-inline-box instead of inline-block. */ | |
html>body .goog-inline-block { | |
display: -moz-inline-box; /* This is ignored by FF3 and later*/ | |
display: inline-block; /* This is ignored by pre-FF3 Gecko */ | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'> | |
<link href="http://vioms.ru/stylesheets/960/reset.css?1288335257" media="screen" rel="stylesheet" type="text/css" /> | |
<link href="http://vioms.ru/stylesheets/960/text.css?1288335257" media="screen" rel="stylesheet" type="text/css" /> | |
<link href="http://vioms.ru/stylesheets/960/960.css?1288335256" media="screen" rel="stylesheet" type="text/css" /> | |
<link href="/stylesheets/formtastic.css?1288515628" media="screen" rel="stylesheet" type="text/css" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#display { | |
.landscape{ } | |
.portrait{ } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Requires prototype.js | |
function edit(action, obj) { | |
Element.hide(obj); | |
var textarea ='<div id="' + obj.id + '_editor"><input type="text" id="' + obj.id + '_edit" name="' + obj.id + '" value="' + obj.innerHTML + '" size="40">'; | |
var button = '<input id="' + obj.id + '_save" type="button" value="SAVE" /> <input id="' + obj.id + '_cancel" type="button" value="CANCEL" /></div>'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var col['ui'] = | |
rotator: { | |
playing: false, | |
toolbar: function(settings) { | |
//TODO: Update to JQuery UI button | |
function createButton(config) { | |
var btn = $('<a />') // LinkButton | |
.attr('href', '#') // + config.label | |
.attr('rel', config.label) // .addClass(config.label) // old CSS support | |
.attr('title', config.label) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- jQuery Library + ALL jQuery Tools --> | |
<script src="http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang=en> | |
<meta charset=utf-8> | |
<title>Valid HTML5 Document - Language English - Encoding UTF-8</title> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Rounded Corners | |
// | |
.border-radius(@radius) | |
-moz-border-radius: @radius | |
-webkit-border-radius: @radius | |
border-radius: @radius | |
.border-top-left-radius(@radius) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-size: 62.5% /* .625 X 16 = 10 */ | |
font-family: Arial, sans-serif; | |
} | |
/* 48px - The quick brown fox jumps over the lazy dog */ | |
.class-for-48px { | |
font-size: 4.8em; /* 48px */ | |
line-height: 1em; /* 48px */ | |
margin-top: 0.5em; | |
margin-bottom: 0em; |