Fast, mobile-friendly and responsive lightbox with CSS3 animations.
Forked from Andrzej Dubiel's Pen Magnific Popup + Animate.css.
Forked from Andrzej Dubiel's Pen Magnific Popup + Animate.css.
Fast, mobile-friendly and responsive lightbox with CSS3 animations.
Forked from Andrzej Dubiel's Pen Magnific Popup + Animate.css.
Forked from Andrzej Dubiel's Pen Magnific Popup + Animate.css.
| .text-xs-left { text-align: left; } | |
| .text-xs-right { text-align: right; } | |
| .text-xs-center { text-align: center; } | |
| .text-xs-justify { text-align: justify; } | |
| @media (min-width: @screen-sm-min) { | |
| .text-sm-left { text-align: left; } | |
| .text-sm-right { text-align: right; } | |
| .text-sm-center { text-align: center; } | |
| .text-sm-justify { text-align: justify; } |
| /** | |
| * Be sure to include library scripts in this order. Can be placed either | |
| * in the header or footer. | |
| */ | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/jquery-infinitescroll/2.0b2.120519/jquery.infinitescroll.min.js"></script> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/masonry/3.1.2/masonry.pkgd.js"></script> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/3.0.4/jquery.imagesloaded.min.js"></script> |
| # Turn on Expires and set default to 0 | |
| ExpiresActive On | |
| ExpiresDefault A0 | |
| # Set up caching on media files for 1 year (forever?) | |
| <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$"> | |
| ExpiresDefault A29030400 | |
| Header append Cache-Control "public" | |
| </FilesMatch> | |
| .twitter-typeahead .tt-query, | |
| .twitter-typeahead .tt-hint { | |
| margin-bottom: 0; | |
| } | |
| .tt-hint { | |
| display: block; | |
| width: 100%; | |
| height: 38px; | |
| padding: 8px 12px; | |
| font-size: 14px; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet"> | |
| <style> | |
| form { padding: 10px; } | |
| .error { color: red; } | |
| </style> | |
| </head> |
There's no shortage of good resources for learning laravel. So instead of the usual introductory tutorial were just gonna learn Laravel by building a project from scratch and that's gonna be a User Management System.
I don't know if my definition of a User Management System is correct but here's my idea of what's it's capable of doing:
| /* Media queries used on blog.staydecent.ca by Adrian Unger | |
| check my full source at: | |
| http://blog.staydecent.ca/static/css/style-0.1.6.css */ | |
| @media only screen and (min-width:768px) and (max-width:1269px) { | |
| /* In my particular design, I used a fluid grid limited to a | |
| max-width of 1140px, while (if there is enough room) | |
| pushing the menu outside of layout, requiring a total | |
| limit of at least 1270px. | |
| So, this first query applies to any screen-width less |