Responsive layout, mobile first, breakpoint configurable
A Pen by Armando Anton on CodePen.
| <?php | |
| $serverTimezone = 'Europe/Madrid'; | |
| $timezones = ['America/Los_Angeles', 'America/Mexico_City', 'Atlantic/Canary', 'Europe/Madrid']; | |
| $tmst = time(); | |
| $datetimeNow = new DateTime('now', new DateTimeZone($serverTimezone)); | |
| $datetimes = array(); | |
| foreach ($timezones as $timezone) |
| <?php | |
| class Null | |
| { | |
| private static $instance; | |
| public function __call($name, $arguments) | |
| { | |
| if (strpos($name, 'is') === 0 || strpos($name, 'has') === 0) | |
| { |
Responsive layout, mobile first, breakpoint configurable
A Pen by Armando Anton on CodePen.
| /* | |
| Instructions: | |
| 1. Log in with your account and go to the desired course | |
| 2. Open the courseware tab | |
| 3. Configure the week variable | |
| 4. Copy this code and paste it in the browser console | |
| */ |