takkerのbundle前CSS
/takkerで使っているUserCSSのbundle前コード
Settings
/takkerのProjectCSSをbundleする
font URLはexbuild --externalで外しておく
?と=と+をencodeしておく必要がある
あー、どうやらURL paramertersが削られてしまうようだ
当分は手作業でhttps://fonts.googleapis.com/css?family=M+PLUS+Rounded+1cに張り替えないとだめだな
本文のフォントを変更 via /motoso/Settings#5ed41648774b17000025cec7
2022-11-21 08:10:32 Note sans JPからM PLUS Roundedに変えた
code:font.css
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c");
html, body, #editor, .grid li {
font-family: helvetica, arial, "M PLUS Rounded 1c", "Sawarabi Gothic", "Noto Sans JP", sans-serif ;
}
common
code:project.css
@import "./font.css";
@import "../common/common.css";
@import '../common/monospace.css';
@import '../common/pin.css';
@import '../common/text-align.css';
ページカードのタイトルを2行に収めるUserCSS
code:project.css
@import "../ページカードのタイトルを2行に収めるUserCSS/style.css";
番号付き箇条書きにFontAwesomeを使うUserCSS
code:project.css
@import "../番号付き箇条書きにFontAwesomeを使うUserCSS/style.css";
kakeruの背景を白にするUserCSS
code:project.css
@import "../kakeruの背景を白にするUserCSS/style.css";
Scrapbox iconをhamburger iconにする
code:project.css
@import '../scrapbox_iconをhamburger_iconにする/style.css';
空リンクの色を変えるUserCSS
これ機能してない気がする……takker.icon
code:project.css
@import '../空リンクの色を変えるUserCSS/style.css';
scrapboxのtitleのfontを大きめにする
scrapboxのトップページへのリンクをnav barに固定するUserCSSが公式採用された際、以前と比べて文字が小さくなってしまったので
code:project.css
@import "./home.css";
code:home.css
.project-home .title {
font-size: 2rem;
}
expandable-menuの長さを切り詰めるUserCSS
code:project.css
@import "../expandable-menuの長さを切り詰めるUserCSS/takker.css";
箇条書きのbulletを控えめにするUser CSS
code:project.css
@import "../箇条書きのbulletを控えめにするUser_CSS/style.css";
takkerのdark theme CSS
code:project.css
@import '../takkerのdark_theme_css/style.css';
タスクリンクV2用UserCSS
code:project.css
@import "../タスクリンクV2用UserCSS/style.css";
背景を/motosoと同じやつにする
Scrapboxのpresentation modeは除く
code:project.css
html:not(data-display-style^="presentation") body {
background-image: url("https://i.gyazo.com/8d65198f72652e8887d2c941f39805b4.png");
}
scrapboxのページカードで数式が改行されないようにする
code:project.css
.grid li.page-list-item a .description .formula { display: inline; }
private projectへのリンクだと明示するUserCSS
/takker-memex/秘密のページ
code:project.css
.page-link:is(
href^="/tosuke-notes",
href^="/blu3mo/",
href^="/masuilab/",
href^="/takker-memex",
href^="/takker-books",
href^="/takker-CEPM",
href^="/takker-MBRC",
href^="/takker-CVBH",
href^="/takker-CVST",
href^="/takker-PS",
href^="/takker-SM",
href^="/takker-SoM",
href^="/takker-private"
)::before {
content: '🔒';
}
takkerのstyle.css
code:user.css
@import "../common/personal.css";
@import '../common/search-form.css';
@import '../common/codeBlock-font.css';
mobileでPageMenuを常時表示するUserCSS
code:user.css
@import "../mobileでPageMenuを常時表示するUserCSS/style.css";
/takkerのUserCSSをbundleする
スクボサーフィン防止対策
正直もういらない気もするが……
watch listが見えないのはそれなりに効果はあるのかも?
2023-02-06 21:05:28 いらないので消した
#2025-05-15 11:40:49
#2023-02-25 11:48:58
#2023-02-06 21:05:37
#2022-11-21 08:11:16
#2022-07-31 11:48:14
#2022-07-17 20:47:27
#2022-06-14 14:35:40