[obsidian] vault backup: 2024-01-17 08:16:16[
This commit is contained in:
parent
10d60d4797
commit
2647a23c98
3
content/.obsidian/community-plugins.json
vendored
3
content/.obsidian/community-plugins.json
vendored
@ -1,4 +1,5 @@
|
||||
[
|
||||
"obsidian-git",
|
||||
"obsidian-zotero-desktop-connector"
|
||||
"obsidian-zotero-desktop-connector",
|
||||
"2hop-links-plus"
|
||||
]
|
22281
content/.obsidian/plugins/2hop-links-plus/main.js
vendored
Normal file
22281
content/.obsidian/plugins/2hop-links-plus/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
content/.obsidian/plugins/2hop-links-plus/manifest.json
vendored
Normal file
10
content/.obsidian/plugins/2hop-links-plus/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "2hop-links-plus",
|
||||
"name": "2Hop Links Plus",
|
||||
"version": "0.37.0",
|
||||
"minAppVersion": "1.3.5",
|
||||
"description": "Related links up to 2 hops away are displayed in a card format, allowing for easy browsing through connections between notes. Each card contains a preview of the corresponding note.",
|
||||
"author": "Tokuhiro Matsuno, L7Cy",
|
||||
"authorUrl": "https://github.com/L7Cy",
|
||||
"isDesktopOnly": false
|
||||
}
|
259
content/.obsidian/plugins/2hop-links-plus/styles.css
vendored
Normal file
259
content/.obsidian/plugins/2hop-links-plus/styles.css
vendored
Normal file
@ -0,0 +1,259 @@
|
||||
:root {
|
||||
--box-width: 139px;
|
||||
--box-height: 170px;
|
||||
--box-font-size: 100%;
|
||||
}
|
||||
/* switch light/dark mode */
|
||||
.theme-light {
|
||||
--bg-box: #ffffff;
|
||||
--bg-box-top: #e2e2e2;
|
||||
--title-box: #363c49;
|
||||
--text-box: #b7b7b7;
|
||||
--bg-header-twohop: #9babc1;
|
||||
--title-header-twohop: #ffffff;
|
||||
--bg-header-new: #fd7373;
|
||||
--title-header-new: #ffffff;
|
||||
--bg-header-connected: #5e8af6;
|
||||
--title-header-connected: #ffffff;
|
||||
--bg-header-properties: #46af5d;
|
||||
--title-header-properties: #ffffff;
|
||||
}
|
||||
|
||||
.theme-dark {
|
||||
--bg-box: #373b44;
|
||||
--bg-box-top: #2b2e38;
|
||||
--title-box: #f0f0f0;
|
||||
--text-box: #b4b5b6;
|
||||
--bg-header-twohop: #2b2e38;
|
||||
--title-header-twohop: #dddede;
|
||||
--bg-header-new: #fb7476;
|
||||
--title-header-new: #ffffff;
|
||||
--bg-header-connected: #80c9fe;
|
||||
--title-header-connected: #202277;
|
||||
--bg-header-properties: #46af5d;
|
||||
--title-header-properties: #ffffff;
|
||||
}
|
||||
|
||||
/* the container */
|
||||
.twohop-links-container {
|
||||
margin-bottom: 55px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.twohop-links-section {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(var(--box-width), 1fr));
|
||||
grid-gap: 8px;
|
||||
margin: 20px;
|
||||
font-size: var(--box-font-size);
|
||||
}
|
||||
|
||||
/* common */
|
||||
.twohop-links-box {
|
||||
box-sizing: border-box;
|
||||
max-height: var(--box-height);
|
||||
padding: 10px;
|
||||
background-color: var(--bg-box);
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
|
||||
cursor: pointer;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.twohop-links-box:hover {
|
||||
filter: brightness(0.8) contrast(0.8);
|
||||
}
|
||||
|
||||
.twohop-links-box-title {
|
||||
color: var(--title-box);
|
||||
font-size: 90%;
|
||||
font-weight: 500;
|
||||
margin-bottom: 10px;
|
||||
display: -webkit-box;
|
||||
overflow: hidden;
|
||||
-webkit-box-orient: vertical;
|
||||
white-space: unset;
|
||||
-webkit-line-clamp: 3;
|
||||
}
|
||||
|
||||
.twohop-links-box img {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
/* Non-header box */
|
||||
.twohop-links-box:not([class*=" "]) {
|
||||
border-top: 10px solid var(--bg-box-top);
|
||||
}
|
||||
|
||||
.twohop-links-box-preview {
|
||||
color: var(--text-box);
|
||||
font-size: 70%;
|
||||
white-space: pre-line;
|
||||
}
|
||||
|
||||
/* connected links */
|
||||
.twohop-links-connected-links-header {
|
||||
background-color: var(--bg-header-connected);
|
||||
color: var(--title-header-connected);
|
||||
}
|
||||
|
||||
/* two hop links */
|
||||
.twohop-links-twohop-header {
|
||||
background-color: var(--bg-header-twohop);
|
||||
color: var(--title-header-twohop);
|
||||
}
|
||||
|
||||
/* properties */
|
||||
.twohop-links-properties-header {
|
||||
background-color: var(--bg-header-properties);
|
||||
color: var(--title-header-properties);
|
||||
}
|
||||
|
||||
/* new links */
|
||||
.twohop-links-new-links-header {
|
||||
background-color: var(--bg-header-new);
|
||||
color: var(--title-header-new);
|
||||
}
|
||||
|
||||
.markdown-embed-content .twohop-links-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body:not(.zoom-off)
|
||||
.view-content
|
||||
div:not(.canvas-node-content)
|
||||
.twohop-links-box
|
||||
img {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
.load-more-button {
|
||||
width: -webkit-fill-available;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.TwoHopLinks {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.settings-button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* @settings
|
||||
|
||||
name: 2Hop Links Plus
|
||||
id: 2hop-links-plus
|
||||
settings:
|
||||
-
|
||||
id: box-width
|
||||
title: Box min width (px)
|
||||
type: variable-number
|
||||
default: 139
|
||||
format: px
|
||||
-
|
||||
id: box-height
|
||||
title: Box max height (px)
|
||||
type: variable-number
|
||||
default: 170
|
||||
format: px
|
||||
-
|
||||
id: box-font-size
|
||||
title: Font size (%)
|
||||
type: variable-number
|
||||
default: 100
|
||||
format: '%'
|
||||
-
|
||||
id: title-box
|
||||
title: Title color
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#363c49'
|
||||
default-dark: '#f0f0f0'
|
||||
-
|
||||
id: text-box
|
||||
title: Text color
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#b7b7b7'
|
||||
default-dark: '#b4b5b6'
|
||||
-
|
||||
id: bg-box-top
|
||||
title: Box color (Top)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#e2e2e2'
|
||||
default-dark: '#2b2e38'
|
||||
-
|
||||
id: bg-box
|
||||
title: Box color
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#ffffff'
|
||||
default-dark: '#373b44'
|
||||
-
|
||||
id: bg-header-connected
|
||||
title: Header box color (Links & Backlinks)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#5e8af6'
|
||||
default-dark: '#80c9fe'
|
||||
-
|
||||
id: title-header-connected
|
||||
title: Header title color (Links & Backlinks)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#ffffff'
|
||||
default-dark: '#202277'
|
||||
-
|
||||
id: bg-header-twohop
|
||||
title: Header box color (2Hop links)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#9babc1'
|
||||
default-dark: '#2b2e38'
|
||||
-
|
||||
id: title-header-twohop
|
||||
title: Header title color (2Hop links)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#ffffff'
|
||||
default-dark: '#dddede'
|
||||
-
|
||||
id: bg-header-new
|
||||
title: Header box color (New links)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#fd7373'
|
||||
default-dark: '#fb7476'
|
||||
-
|
||||
id: title-header-new
|
||||
title: Header title color (New links)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#ffffff'
|
||||
default-dark: '#ffffff'
|
||||
-
|
||||
id: bg-header-properties
|
||||
title: Header box color (Properties)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#46af5d'
|
||||
default-dark: '#46af5d'
|
||||
-
|
||||
id: title-header-properties
|
||||
title: Header title color (Properties)
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
default-light: '#ffffff'
|
||||
default-dark: '#ffffff'
|
||||
-
|
||||
id: property-info
|
||||
title: About Properties
|
||||
description: "Each property header is assigned a css class in the form twohop-links-{key}-header, so you can use css snippets to style each property."
|
||||
type: info-text
|
||||
markdown: true
|
||||
*/
|
3
content/Aro-Ace.md
Normal file
3
content/Aro-Ace.md
Normal file
@ -0,0 +1,3 @@
|
||||
#notion #sexuality
|
||||
|
||||
[[アロマンティック]]-[[アセクシャル]]
|
1
content/アセクシャル.md
Normal file
1
content/アセクシャル.md
Normal file
@ -0,0 +1 @@
|
||||
#sexuality
|
1
content/アロマンティック.md
Normal file
1
content/アロマンティック.md
Normal file
@ -0,0 +1 @@
|
||||
#sexuality
|
13
content/エトセトラ vol.10 特集:男性学.md
Normal file
13
content/エトセトラ vol.10 特集:男性学.md
Normal file
@ -0,0 +1,13 @@
|
||||
#book
|
||||
|
||||
https://etcbooks.co.jp/book/etcvol10/
|
||||
|
||||
ISBN:978-4-909910-20-2
|
||||
|
||||
[[周司あきら]] 特集編集
|
||||
|
||||
2024/01/17
|
||||
|
||||
仲芦達矢「ノイジー・マスキュリニティ」の冒頭、男性性という概念を持ち出すとき、それはある人やものに対する特徴を暗黙的に「男性性+ノイズ」としてモデル化している、という話が情報学をやっている人間にはスッと入ってきて、本題のかなり直接的な欲望についての話と合わせて、良くも悪くも一番堪えた文章だった。
|
||||
|
||||
自分の興味にピタッとハマる内容ではなかったなと思いつつその理由を考えたところ、男について話すときに[[Aro-Ace]]の話になんかなりにくいよなって思った。[[ACE アセクシュアルから見たセックスと社会のこと - アンジェラ・チェン|チェンの本]]にもあったけど、単に「無いこと」について話すのが難しいというのはありつつも、マスキュリンで「無く」なることと女性的に「なる」ことの違いがまだ自分の中では混乱していて、そこにヒントを与えてくれる言葉にまだ自分は出会えてない
|
@ -24,6 +24,8 @@ title: 読書メモ
|
||||
|
||||
[[Data Feminism - Catherine D’Ignazio、Lauren F. Klein]]
|
||||
|
||||
[[エトセトラ vol.10 特集:男性学]]
|
||||
|
||||
### その他
|
||||
|
||||
[[ACEが読むと面白いかもしれない漫画]]
|
Loading…
Reference in New Issue
Block a user