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
#import "WebServerBaseViewController.h" | |
#import "GogobotApi.h" | |
#import "NXOAuth2Client.h" | |
#import "UIHelpers.h" | |
#import "GogobotAppDelegate.h" | |
#import "NSDictionary+QueryString.h" | |
@interface WebServerBaseViewController (Private) | |
- (void)loadWebView; |
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
textarea { | |
resize: horizontal; | |
} |
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
form li { position: relative; } | |
label { | |
position: absolute; | |
top: 5px; // adjust as needed | |
left: 5px; | |
} | |
//remove absolute position if the label comes after | |
//the input. Eg. a checkbox with a text next to it | |
input + label { position: static; } |
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
.tooltip { position: relative; } | |
.tooltip span { | |
position: absolute; | |
right: 0; | |
top: -35px; | |
display: none; | |
min-width: 50px; | |
padding: 3px 8px; | |
white-space: nowrap; | |
font-size: 11px; |
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
.hasJS .module { | |
display: none; | |
} |
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
.group:after { | |
content: "."; | |
display: block; | |
height: 0; | |
clear: both; | |
visibility: hidden; | |
} |
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
/* NON RGBa BROWSERS | |
------------------------------------------------------ */ | |
#wrap { background-color: #000; } | |
#footer, | |
#header { background-color: #ccc; } | |
.section { color: #fff; } | |
/* HEADER | |
------------------------------------------------------ */ | |
#header { background-color: rgba(204,204,204,.8); } |
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
$('.scrollPage').click(function() { | |
var elementClicked = $(this).attr("href"); | |
var destination = $(elementClicked).offset().top; | |
$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 ); | |
return false; | |
}); |
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
p + p { background-color: #fc0; } |
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 { font-size: 62.5%; } | |
.post { | |
position: relative; | |
margin-left: 4.8em; | |
} | |
.entryDate { | |
border: 1px solid #999; | |
font-family: Georgia,"Times New Roman", serif; | |
left: -4.8em; | |
line-height: 1; |
OlderNewer