For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.
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
| window.onload = function() { | |
| if (window.location.hash) | |
| scroll(0,0); | |
| setTimeout(function(){scroll(0,0);},1); // fix for some browser issues | |
| smoothScroll(); | |
| } | |
| function smoothScroll() { |
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
| MAIL_DRIVER=smtp | |
| MAIL_HOST=localhost | |
| MAIL_PORT=1025 | |
| MAIL_USERNAME=null | |
| MAIL_PASSWORD=null | |
| MAIL_ENCRYPTION=null | |
| // Check on port: 8025 |
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
| let path = window.location.pathname.split("/")[1]; | |
| // for parent menu items | |
| $('.navbar-nav > li > a[href="'+path+'"]').parent() | |
| .addClass('active'); | |
| // for dropdown items - highlights both dropdown item and parent link | |
| $('.dropdown-menu > a[href="'+path+'"]') | |
| .addClass('active') | |
| .parents('.nav-item').addClass('active'); |
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
| [...Array(5).keys()].map((question, index) => { | |
| return ( | |
| /* HTML/JSX here */ | |
| ) | |
| }) |
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
| html { | |
| -webkit-text-size-adjust: none; /* Prevent font scaling in landscape */ | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } |
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
| /* Place this after bootstrap.scss */ | |
| $screen-xl: 1560px !default; | |
| $screen-xl-min: $screen-xl !default; | |
| $screen-xl-desktop: $screen-xl-min !default; | |
| $screen-lg-max: ($screen-xl-min - 1) !default; | |
| $container-xlarge-desktop: (1530px + $grid-gutter-width) !default; | |
| $container-xl: $container-xlarge-desktop !default; | |
| .container { |
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
| { | |
| "documentation": "https://github.com/adobe/brackets/wiki/User-Key-Bindings", | |
| "overrides": { | |
| "Ctrl-Alt-C":"codefolding.collapse", | |
| "Ctrl-Alt-X":"codefolding.expand" | |
| } | |
| } |
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
| /* Bootstrap Popover on hover | |
| * Problem: When the user moves the mouse on the popover, it should not close | |
| * Solution from fiddle - http://jsfiddle.net/WojtekKruszewski/Zf3m7/22/ | |
| */ | |
| var originalLeave = $.fn.popover.Constructor.prototype.leave; | |
| $.fn.popover.Constructor.prototype.leave = function(obj){ | |
| var self = obj instanceof this.constructor ? | |
| obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) | |
| var container, timeout; |
NewerOlder