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
| $(document).ready(function() { | |
| function filterPath(string) { | |
| return string | |
| .replace(/^\//,'') | |
| .replace(/(index|default).[a-zA-Z]{3,4}$/,'') | |
| .replace(/\/$/,''); | |
| } | |
| var locationPath = filterPath(location.pathname); | |
| var scrollElem = scrollableElement('html', 'body'); | |
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
| .roundedTop, .roundedTop .rLeft, .roundedMiddle, .roundedMiddle .rLeft, .roundedBottom, .roundedBottom .rLeft { | |
| background: transparent !important; | |
| } | |
| .actions, .inlineContentAdder { | |
| background: #333 !important; | |
| } | |
| .inlineContentAdder a.vwInitialAdd, .inlineContentAdder a.vwInitialAdd:link { | |
| border-left: 3px solid #1cd971 !important; | |
| background: transparent !important; | |
| } |
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
| .container { width: 1436px; margin: auto; position: relative; } | |
| .row > [class*="grid"]:last-child, .last { margin-right: 0; } | |
| .grid1, .grid2, .grid3, .grid4, .grid5, .grid6, .grid7, .grid8, .grid9, .grid10, .grid11, .grid12 { float: left; margin-right: 40px; } | |
| .grid1 { width: 83px; } | |
| .grid2 { width: 206px; } | |
| .grid3 { width: 329px; } | |
| .grid4 { width: 452px; } | |
| .grid5 { width: 575px; } | |
| .grid6 { width: 698px; } | |
| .grid7 { width: 821px; } |
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
| // JS | |
| if($('.post h2')){ | |
| $.miniShare(); | |
| var minishare; | |
| $('div#minishare').append("<a href='/link_to_your_rss_feed' class='rss'></a>"); | |
| minishare = $('div#minishare').detach(); | |
| minishare.insertAfter('.post h2'); | |
| } else { | |
| return false; |
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 --> | |
| <div><img src="" class="rollover"/></div> | |
| <div></div> | |
| <!-- CSS --> | |
| .rollover { | |
| position: absolute; | |
| opacity: 0; | |
| -webkit-transition: opacity 500ms ease; | |
| -moz-transition: opacity 500ms ease; | |
| -ms-transition: opacity 500ms ease; |
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
| input, select, textarea, option, button, datalist, keygen, output { | |
| -webkit-appearance: none; | |
| } |
NewerOlder