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
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EEFF99), to(#66EE33)); | |
background: -webkit-linear-gradient(#EEFF99, #66EE33); | |
background: -moz-linear-gradient(#EEFF99, #66EE33); | |
background: -ms-linear-gradient(#EEFF99, #66EE33); | |
background: -o-linear-gradient(#EEFF99, #66EE33); | |
background: linear-gradient(#EEFF99, #66EE33); | |
-pie-background: linear-gradient(#EEFF99, #66EE33); | |
behavior: url(https://raw.githubusercontent.com/atulc007/CSS3-PIE/master/PIE-1.0.0/PIE.htc); |
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
-moz-column-count: 5; | |
-moz-column-gap: 20px; | |
-ms-column-count: 5; | |
-ms-column-gap: 20px; | |
-webkit-column-count: 5; | |
-webkit-column-gap: 20px; | |
column-count: 5; | |
column-gap: 20px; | |
/* |
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
/* | |
Links to Border Image Generator Tool: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Background_and_Borders/Border-image_generator | |
and | |
http://border-image.com/ | |
Syntax: | |
border-image: [link to image] [top offset] [right offset] [bottom offset] [left offset] [round | stretch | repeat] | |
*/ | |
-moz-border-image: url(http://www.w3.org/TR/css3-background/border.png) 27 27 28 round; | |
-webkit-border-image: url(http://www.w3.org/TR/css3-background/border.png) 27 27 28 round; | |
-o-border-image: url(http://www.w3.org/TR/css3-background/border.png) 27 27 28 round; |
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() { | |
var _alert = window.alert; // <-- Reference | |
window.alert = function(str) { | |
// do something additional | |
if(console) console.log(str); | |
//return _alert.apply(this, arguments); // <-- The universal method | |
// Suits for this case | |
}; | |
})(); |
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
Hi Nagaraj, | |
Today's Work Report: | |
✔ Continue work on Master page and Page Layouts. @done (15-09-24 20:01) | |
Achievements: | |
✔ All Achievements Here. @done (15-09-25 13:00) | |
Tomorrow's Work: | |
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-transition: property duration timing-function delay; | |
-moz-transition: property duration timing-function delay; | |
-o-transition: property duration timing-function delay; | |
transition: property duration timing-function delay; |
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
SELECTOR::-webkit-input-placeholder { | |
color: white; | |
} | |
SELECTOR:-moz-placeholder { /* Firefox 18- */ | |
color: white; | |
} | |
SELECTOR::-moz-placeholder { /* Firefox 19+ */ | |
color: white; |
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() { | |
$('a.smooth-scroll[href*=#]:not([href=#])').click(function() { | |
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { | |
var target = $(this.hash); | |
target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | |
if (target.length) { | |
$('html,body').animate({ | |
scrollTop: target.offset().top | |
}, 1000); | |
return false; |