- Sign Up
- Credit Card Checkout
- Landing Page (above the fold)
- Calculator
- App Icon
- User Profile
- Settings
- 404 page
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
/********************* | |
Fancy CSS Textboxes | |
**********************/ | |
$light-blue: #609FD5; | |
input[type="checkbox"] { | |
position: absolute; | |
left: -9999px; | |
visibility: hidden; |
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
/* ADDS A BROWSER PREFIX TO THE PROPERTY */ | |
@mixin css3-prefix($property, $value) { | |
-webkit-#{$property}: #{$value}; | |
-khtml-#{$property}: #{$value}; | |
-moz-#{$property}: #{$value}; | |
-ms-#{$property}: #{$value}; | |
-o-#{$property}: #{$value}; | |
#{$property}: #{$value}; | |
} |
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
{ | |
"color_scheme": "Packages/Boxy Theme/schemes/Boxy Ocean.tmTheme", | |
"font_face": "Hack", | |
"font_size": 14.0, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 2, |
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
/*KEYFRAME ANIMATION MIXIN | |
http://joshbroton.com/quick-fix-sass-mixins-for-css-keyframe-animations/ | |
------------USAGE////////////////////////////// | |
@include keyframes(move-the-object) { | |
0% { left: 100px; } | |
100% { left: 200px; } | |
} |
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
{ | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
"font_face": "Deja Vu Sans Mono", | |
"font_size": 14.0, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 2, |
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
// unregister the default activity widget | |
add_action('wp_dashboard_setup', 'remove_dashboard_widgets' ); | |
function remove_dashboard_widgets() { | |
global $wp_meta_boxes; | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']); | |
} | |
// register your custom activity widget |
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
<?php | |
$time = time('h'); | |
function how_i_feel_today($time) { | |
switch($time) { | |
case 8: | |
case 9: | |
case 10: | |
case 11: | |
echo 'Damn, it\'s only ' . $time . '!<br />'; |
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
Show hidden characters
{ | |
"installed_packages": | |
[ | |
"Alignment", | |
"Color Scheme - Frontend Delight", | |
"Color Scheme - RSE", | |
"Color Schemes by carlcalderon", | |
"Package Control", | |
"Prefixr", | |
"StringUtilities", |
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
$(document).ready(function() { | |
// add prettyprint class to all <pre><code></code></pre> blocks | |
var prettify = false; | |
$("pre code").parent().each(function() { | |
$(this).addClass('prettyprint'); | |
21 $(this).addClass('linenums'); | |
prettify = true; | |
}); |