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
//function to equalise li.person elemenets, no matter the content. | |
// Shorthand for $( document ).ready() | |
$(function() { | |
console.log( "ready! and equalise." ); | |
var maxHeight = 0; | |
$("li").each(function(){ | |
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } | |
}); | |
$("li").height(maxHeight); | |
}); |
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
@media screen and ( min-width: 783px ) { | |
.admin-bar .site-header { | |
top: 32px; | |
} | |
} |
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
var $document = $(document), | |
$header = $('.admin-bar .site-header'); | |
if($(window).width() < 601) { | |
$document.scroll(function() { | |
if ($document.scrollTop() >= 46) { | |
// user scrolled 46 pixels or more; | |
$header.css({"top": "0"}) | |
} else { |
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
.admin-bar .site-header { | |
top: 46px; | |
} |
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
.admin-bar .site-header { | |
top: 46px; | |
} |
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
<ion-header> | |
<ion-navbar> | |
<ion-title *ngIf="selectedVarud"> | |
{{selectedVarud.title}}</ion-title> | |
</ion-navbar> | |
</ion-header> | |
<ion-content> | |
<ion-list> | |
<ion-list-header class="list-header-margin">Jook</ion-list-header> |
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
<ion-grid> | |
<ion-row> | |
<ion-col width-33 *ngFor="let info of infos"> | |
<div class="instructions" [navPush]="info.tap"> | |
<div> | |
<img src="assets/icons/{{info.icon}}.png" alt="Icon"> | |
</div> | |
<span>{{info.title}}</span> | |
</div> | |
</ion-col> |
NewerOlder