/*
Theme Name: ASCTheme
Theme URI: test
Author: InabaAkika
Author URI: test
Description: test
Tags: test
Version: 2024
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: test
Text Domain: asc_theme

NusstTheme WordPress Theme © 2024 InabaAkika
*/

@import "styles/site.css";

 /*for debug spacing*/
/*#wpadminbar {*/
/*    top: -80px!important;*/
/*}*/

/* ローディング要素のスタイル */
#loading {
    position: fixed; /* 画面全体を覆う */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* 背景色 */
    background-size: cover;
    display: flex;
    justify-content: center; /* 中央揃え */
    align-items: center;
    z-index: 9999; /* 最前面に表示 */
    font-size: large;
    text-align: center;

    opacity: 1; /* 初期状態は不透明 */
    transition: opacity 1s ease-out; /* 透明度の変化を1秒かけて実行 */
    text-shadow: 0 0px 20px rgba(218, 255, 229, 0.8);

    b {
        font-size: xxx-large;
    }
}

/* 検索結果ハイライト */
mark.highlight {
    color: unset;
    background: linear-gradient(transparent 50%, #ffb979 50%);
    vertical-align: middle;
    font-weight: bold;
}


/* リンク無効 */
.link-invalid {
    cursor: default!important;
    opacity: .2;
    &:hover {
        opacity: .2!important;
    }
}

.search-result-link {
    text-align: center;
    margin-bottom: 2.5rem;
}

#single main {
    padding-left: 2rem;
}