This file contains 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
#ideaviewer { | |
position: fixed; | |
top: 30px; | |
left: 60px; | |
right: 60px; | |
bottom: 30px; | |
background: orange; | |
text-align: center; | |
} | |
This file contains 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
#ideaviewer { | |
position: fixed; | |
top: 30px; | |
left: 60px; | |
right: 60px; | |
bottom: 30px; | |
background: orange; | |
text-align: center; | |
} | |
This file contains 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
/* column container */ | |
.colmask { | |
position:relative; /* This fixes the IE7 overflow hidden bug */ | |
clear:both; | |
float:left; | |
width:100%; /* width of whole page */ | |
overflow:hidden; /* This chops off any overhanging divs */ | |
} | |
/* common column settings */ |
This file contains 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
/* column container */ | |
.colmask { | |
position:relative; /* This fixes the IE7 overflow hidden bug */ | |
clear:both; | |
float:left; | |
width:100%; /* width of whole page */ | |
overflow:hidden; /* This chops off any overhanging divs */ | |
} | |
/* common column settings */ |
This file contains 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
/* column container */ | |
.colmask { | |
position:relative; /* This fixes the IE7 overflow hidden bug */ | |
clear:both; | |
float:left; | |
width:100%; /* width of whole page */ | |
overflow:hidden; /* This chops off any overhanging divs */ | |
} | |
/* common column settings */ |
This file contains 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
/* column container */ | |
.colmask { | |
position:relative; /* This fixes the IE7 overflow hidden bug */ | |
clear:both; | |
float:left; | |
width:100%; /* width of whole page */ | |
overflow:hidden; /* This chops off any overhanging divs */ | |
} | |
/* common column settings */ | |
.colright, |
This file contains 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
/* | |
HTML5 ✰ Boilerplate | |
style.css contains a reset, font normalization and some base styles. | |
credit is left where credit is due. | |
much inspiration was taken from these projects: | |
yui.yahooapis.com/2.8.1/build/base/base.css | |
camendesign.com/design/ | |
praegnanz.de/weblog/htmlcssjs-kickstart |
This file contains 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
require 'dm-core' | |
require 'dm-redis-adapter' | |
DataMapper.setup(:default, {:adapter => "redis"}) | |
class Book | |
include DataMapper::Resource | |
property :id, Serial | |
property :name, String |
This file contains 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
require 'sinatra/base' | |
require 'rack/flash' | |
require 'warden' | |
require 'slim' | |
require 'sequel' | |
require 'sqlite3' | |
DB = Sequel.sqlite | |
DB.create_table :users do | |
primary_key :id |
This file contains 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{background:url('http://ramaze.net/ramaze/images/bg.png');} | |
/* login leds */ | |
#container { | |
width: 626px; width:709px; | |
height: 256px; | |
margin: -107px 0 0 -348px; margin:-128px 0 0 -348px; | |
padding: 0 0 0 0px; |