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
| (function (window, document, undefined) { | |
| 'use strict'; | |
| // Initialize the media query | |
| var mediaQuery = window.matchMedia('(min-width: 560px)'); | |
| // Add a listen event | |
| mediaQuery.addListener(doSomething); | |
| // Function to do something with the media query |
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
| .centerFlex { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } |
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
| .centrado-porcentual { | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| } |
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
| git log | |
| git config --global alias.lg "log --oneline --decorate --all --graph" | |
| git lg | |
| git status | |
| git config --global alias.s "status -s -b" | |
| git s |
NewerOlder