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
/* text-default.min.css v1 */ | |
.text-default{color:rgb(0,0,0);font-family:'Times New Roman';font-size:1rem;font-style:normal;font-weight:400;letter-spacing:normal;line-height:normal;text-align:left;text-decoration:none currentcolor solid;text-shadow:none;text-transform:none} |
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
// randomString.js v1 | |
function randomString(length = 10, characters = 'abcdefghijklmnopqrstuvwxyz') { | |
let result = ''; | |
for (let i = 0; i < length; i++) { | |
result += characters[Math.floor(Math.random() * characters.length)]; | |
}; | |
return result; | |
}; |
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
%userprofile%\AppData\Local\Google\Chrome\User Data\ |
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
// isIE.js v1 | |
function isIE(userAgent) { | |
userAgent == undefined ? userAgent = window.navigator.userAgent : userAgent = userAgent; | |
return !!userAgent.match(/(MSIE |Trident.+rv:11\.)/); | |
}; |
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
// getIEVersion.js v1 | |
function getIEVersion(userAgent) { | |
userAgent == undefined ? userAgent = window.navigator.userAgent : userAgent = userAgent; | |
var msie = userAgent.indexOf('MSIE '), | |
ie11 = !!userAgent.match(/Trident.+rv:11\./); | |
if (ie11) { | |
return 11; | |
}; | |
if (msie > 0) { | |
return parseInt(userAgent.substring(msie + 5, userAgent.indexOf('.', msie))); |
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
// jquery-shadow-root.js v1 | |
jQuery.fn.extend({ | |
shadowRoot: function() { | |
let shadowRoot = $(); | |
$(this).each(function() { | |
if ($(this)[0].shadowRoot != null) { | |
shadowRoot = shadowRoot.add($(this)[0].shadowRoot); | |
}; | |
}); | |
return shadowRoot; |
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
À, A | |
Á, A | |
Â, A | |
Ã, A | |
Ä, A | |
Å, A | |
à, a | |
á, a | |
â, a | |
ã, a |
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
sfv, md5, sha* |
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
/* bs4-float.css v1 */ | |
.float-left { | |
float: left !important; | |
} | |
.float-right { | |
float: right !important; | |
} | |
.float-none { |
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
/* bs4-container-max-1920px.css v1 */ | |
.container-max-1920px { | |
width: 100%; | |
padding-right: 15px; | |
padding-left: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
max-width: 1920px; | |
} | |
.container-max-1920px.no-gutters{ |