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
<div class="wysiwyg-gallery"> | |
<div class="row"> | |
<div class="col-4"> | |
<div class="wysiwyg-gallery-item"> | |
<div class="wysiwyg-gallery-image"> | |
<div class="wysiwyg-gallery-zoom"> | |
<i class="zoom-icon fas fa-search-plus text-white"></i> | |
</div> | |
<a href="http://via.placeholder.com/1200x768" data-toggle="lightbox" data-gallery="gallery-name" data-type="image"> |
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
// Variables | |
// | |
// Variables should follow the `$component-state-property-size` formula for | |
// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs. | |
// | |
// Color system | |
// |
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 SaveToDisk(fileURL, fileName) { | |
// for non-IE | |
if (!window.ActiveXObject) { | |
var save = document.createElement('a'); | |
save.href = fileURL; | |
save.target = '_blank'; | |
save.download = fileName || 'unknown'; | |
var evt = new MouseEvent('click', { | |
'view': window, |
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
// Margin | |
.m{ | |
//Left | |
&-l{ | |
&5 {margin-left: 5px} | |
&10 {margin-left: 10px} | |
&15 {margin-left: 15px} | |
&20 {margin-left: 20px} | |
&25 {margin-left: 25px} |
NewerOlder