- Use respond.js
- Place respond.js after stylesheets
- Put all
@keyframesstatements outside of the media queries
// Problems with running script
- Hardcode stylesheet instead of enqueue'ing through WP: ``
| jade = jade -w views/*.jade -o ./ -P # Convert Jade files to HTML | |
| npm = npm prune; npm install | |
| server = ./bin/www | |
| stylus = mkdir public/css; stylus -w -m styles/style.styl -o public/css -u nib -c | |
| start: | |
| $(npm); $(jade) &$(stylus) &$(server) |
| (function () { | |
| var teamName = "seahawks"; // Change this based on home team's name (post-season) | |
| var i = 1; | |
| var getStream = setInterval(function () { | |
| var streamURL = 'http://nlds' + i + '.cdnak.neulion.com/nlds/nfl/' + teamName + '/as/live/' + teamName + '_hd_800.m3u8'; | |
| $.ajax({ | |
| dataType: 'jsonp', | |
| url: streamURL, | |
| data: { |
| //// | |
| //// | |
| //// | |
| //// | |
| //// | |
| //// PROJECT DEPRECATED FEB 21, 2016 | |
| //// | |
| //// MOVED TO https://github.com/devinmcinnis/yahoo-fantasy-start-active-players | |
| //// | |
| //// |
@keyframes statements outside of the media queries// Problems with running script
!!! 5
| <!--[if lt IE 7]> <html class="lt-ie7" lang="en"> <![endif]-->
| <!--[if IE 7]> <html class="ie7" lang="en"> <![endif]-->
| <!--[if IE 8]> <html class="ie8" lang="en"> <![endif]-->
| <!--[if gt IE 8]> <!--> <html lang="en"> <!--<![endif]-->
head
...
| Login to cPanel, note "IP Address" on left hand side and the username you logged into HG with | |
| Install Wordpress via Fantastico De Luxe (or whatever) | |
| Setup Wordpress account at http://[ip-address]/~[username]/wp-config-sample.php, note your database name | |
| Go back to cPanel > phpMyAdmin > [database-name] > wp_options > Edit "siteurl" | |
| Replace textarea text with http://[ip-address]/~[username]/ | |
| Login to http://[ip-address]/~[username]/wp-admin |
| div { | |
| width: 30px; | |
| height: 30px; | |
| border: 1px solid #295B76; | |
| padding: 4px; | |
| border-radius: 4px; | |
| box-shadow: inset 0 0 0 1px #3B8CBF; | |
| background: #14638e; | |
| } |
| <?php | |
| # I have no idea why this is not in the documentation | |
| $event = eme_get_event($wp_query->query_vars['event_id']); | |
| print_r($event); | |
| ?> |