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
.ir { | |
border: 0; | |
font: 0/0 a; | |
text-shadow: none; | |
color: transparent; | |
background-color: transparent; | |
} |
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
<script type="text/javascript" charset="utf-8"> | |
$(document).ready(function(){ | |
var pathname = (window.location.pathname.match(/[^\/]+$/)[0]); | |
$('.nav li a').each(function() { | |
if ($(this).attr('href') == pathname) | |
{ | |
$(this).parent().addClass('active'); | |
} | |
}); | |
}); |
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
.center-aligned { display: table; background: hsl(120, 100%, 97%); width: 100%; } | |
.center-core { display: table-cell; text-align: center; vertical-align: middle; } | |
.center-core img { width: 33%; height: auto; } | |
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
.absolute-aligned { | |
position: relative; min-height: 500px; | |
background: hsl(200, 100%, 97%); | |
} |