pmint
https://gyazo.com/4ab318c318badd826fe63976b4a86798
code:script.js
// 画面遷移時のフェードアウト効果
$('.app').on('click', function(e){
let a = $(e.target).closest('a').eq(0)
if (a.attr('rel') == 'route'){
$('.page-wrapper, .page-list').addClass('leave')
}
})
// アクセスキー(alt + …)
$('input.form-control').attr('accesskey', '/') // 検索欄
$('.project-home').attr('accesskey', 'h') // ホーム
// $('.new-button').attr('accesskey', 'n') // + (New Page)
$('.new-button').attr('accesskey', 'c') // + (New Page)
// テーマカラー変更
// $('head').html('<meta name="theme-color" content="' + $(':root').css('--navbar-bg') + '">' + $('head').html())
$('head').html('<meta name="theme-color" content="#203834">' + $('head').html())