Skip to content

Instantly share code, notes, and snippets.

View igor-ribeiro's full-sized avatar

Igor Ribeiro igor-ribeiro

  • @galleysolutions
  • Brazil
View GitHub Profile
@igor-ribeiro
igor-ribeiro / media-query.css
Created June 5, 2018 13:51 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
  • Alignment
  • ApplySyntax
  • AutoBackups
  • BracketGuard
  • BracketHighlighter
  • Case Conversion
  • Color Highlighter
  • ColorPicker
  • ColorSchemeSelector
  • Console Wrap for js
@igor-ribeiro
igor-ribeiro / CatchAllOptionsRequestsProvider.php
Last active February 26, 2016 15:37 — forked from danharper/CatchAllOptionsRequestsProvider.php
Lumen with CORS and OPTIONS requests
<?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
/**
* If the incoming request is an OPTIONS request
* we will register a handler for the requested route
*/
class CatchAllOptionsRequestsProvider extends ServiceProvider {