Skip to content

Instantly share code, notes, and snippets.

@ysakmrkm
ysakmrkm / gist:2341160
Created April 9, 2012 03:20
Pure css image rollover mixins
@mixin rover($width,$height,$bg,$ext:'gif',$color:''){
@if $bg != '' {
@if $color != '' {
background:url('../img/' + $bg + '.' + $ext) left top no-repeat $color;
} @else {
background:url('../img/' + $bg + '.' + $ext) left top no-repeat;
}
}
a {
@ysakmrkm
ysakmrkm / gist:1851561
Created February 17, 2012 07:33
Get Google+ my account data
/*
First time, You need access here, and need configure about API Access.
https://code.google.com/apis/console/b/0/
Next , access here
https://accounts.google.com/o/oauth2/auth?redirect_uri=Uri_you_like_this_code_wirtten&response_type=code&client_id=Your_Client_ID&approval_prompt=force&scope=https://www.googleapis.com/auth/plus.me&access_type=offline
*/
$encoding = 'UTF-8';