This file contains 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
import os | |
import glob | |
def main(): | |
src_dir = "./Framework" | |
dst_dir = "./_Framework" | |
for src_ts in glob.glob(os.path.join(src_dir, "**/*.ts"), recursive=True): | |
dst_ts = src_ts.replace(src_dir, dst_dir) |
This file contains 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
/* アイコン画像を任意の画像にするCSS */ | |
#author-photo { | |
position: relative; | |
} | |
#author-photo::after { | |
content: ""; | |
display: block; | |
position: absolute; | |
top: 0; |
This file contains 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
*,*::before,*::after { | |
box-sizing: border-box; | |
} | |
body { | |
background-color: rgba(0, 0, 0, 0); | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
} |
This file contains 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 showMissOnly() { | |
const turnList = document.querySelectorAll("details.collapse") | |
for (const turn of turnList) { | |
if (turn.querySelector(".turn-info")) { | |
const turnInfo = turn.querySelector(".turn-info") | |
if (turnInfo) { | |
if (turnInfo.querySelector(".order-loss")) { | |
turn.setAttribute("open", ""); | |
} | |
else { |
This file contains 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
:root { | |
--main-grad: linear-gradient(180deg, #ffe05a, #ff5fbb, #eb269e); | |
--sub-grad: linear-gradient(165deg, #6bff00, #009aff,#b300ff); | |
--main-color: rgba(255,95,187,.85); | |
--sub-color: rgba(0,154,255,.9); | |
} | |
*,*::before,*::after { | |
box-sizing: border-box; | |
} |