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
| // Requires jQuery of course. | |
| $(document).ready(function() { | |
| $('.show-comments').on('click', function(){ | |
| var disqus_shortname = 'YOUR-DISQUS-USERNAME'; // Replace this value with *your* username. | |
| // ajax request to load the disqus javascript | |
| $.ajax({ | |
| type: "GET", | |
| url: "http://" + disqus_shortname + ".disqus.com/embed.js", | |
| dataType: "script", |
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
| <!-- Something like this --> | |
| <script> | |
| Modernizr.load({ | |
| test: Modernizr.mq('(min-width:400px)'), | |
| yep: '<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/not-small-screen-stuff.js">', | |
| }); | |
| </script> | |
| <!-- Or --> | |
| <script> |
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
| /* system messages */ | |
| dl#system-message { | |
| border:1px solid #e5e5e5; | |
| border:1px solid rgba(0,0,0,.15) | |
| } | |
| dl#system-message dt { | |
| border-bottom:3px double #ddd; | |
| border-bottom:3px double rgba(0,0,0,.1); | |
| font-weight:700; | |
| text-align:center; |
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
| ul.breadcrumbs li :after{ | |
| content:" "; | |
| display:block; | |
| width:1.45em; | |
| height:1.45em; | |
| border-top:1px solid rgba(0, 0, 0, 0.05); | |
| border-right:1px solid rgba(0, 0, 0, 0.25); | |
| -webkit-transform:rotate(45deg); | |
| -moz-transform:rotate(45deg); | |
| transform:rotate(45deg); |
NewerOlder