This file contains 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
input:-webkit-autofill { | |
-webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */ | |
-webkit-text-fill-color: #333; | |
} | |
input:-webkit-autofill:focus { | |
-webkit-box-shadow: /*your box-shadow*/,0 0 0 50px white inset; | |
-webkit-text-fill-color: #333; | |
} |
This file contains 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
@-webkit-keyframes shake { | |
0% { -webkit-transform: translate(10px, 0); } | |
20% { -webkit-transform: translate(-10px, 0); } | |
10% { -webkit-transform: translate(8px, 0); } | |
40% { -webkit-transform: translate(-8px, 0); } | |
50% { -webkit-transform: translate(4px, 0); } | |
60% { -webkit-transform: translate(-4px, 0); } | |
70% { -webkit-transform: translate(4px, 0); } | |
80% { -webkit-transform: translate(-2px, 0); } | |
0% { -webkit-transform: translate(2px, 0); } |
This file contains 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 wheel(event){ | |
var delta = 0; | |
event.preventDefault(); | |
if(window.event.wheelDelta > 0){ | |
$('.right_arrow').trigger('click'); | |
} | |
else{ | |
$('.left_arrow').trigger('click'); | |
} |
This file contains 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
$('*').hover(function() { | |
$(this).data('hover', 1); //store in that element that the mouse is over it | |
}, | |
function() { | |
$(this).data('hover', 0); //store in that element that the mouse is no longer over it | |
}); | |
window.isHovering = function (selector) { | |
return $(selector).data('hover') ? true : false; //check element for hover property | |
} |
This file contains 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
::-webkit-scrollbar { | |
height:16px; | |
overflow:visible; | |
width:16px; | |
} | |
::-webkit-scrollbar-button { | |
height:0; | |
width:0; |
This file contains 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
#gdx-bubble-container { | |
display:block!important; | |
z-index:99991!important; | |
} | |
#gdx-bubble-container,#gdx-bubble-container * { | |
//background:#fff!important; | |
background-repeat:no-repeat!important; |
This file contains 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
/**********************************************/ | |
/* | |
/* IR_Black Skin by Ben Truyman - 2011 | |
/* | |
/* Based on Todd Werth's IR_Black: | |
/* http://blog.toddwerth.com/entries/2 | |
/* | |
/* Inspired by Darcy Clarke's blog post: | |
/* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
/* |
This file contains 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
$("<h1/>",{ | |
text: "discription", | |
id="" | |
}).appendTo(element); | |
var newElement = $("<div/>",{id="",class=""}).appendTo(element); |
NewerOlder