From b1149047311af4698d21d00c325f7dada8ba0fce Mon Sep 17 00:00:00 2001 From: takashi Date: Thu, 28 Mar 2024 15:33:23 +0000 Subject: [PATCH 1/6] =?UTF-8?q?SearX=20=E6=A4=9C=E7=B4=A2=E3=83=95?= =?UTF-8?q?=E3=82=A9=E3=83=BC=E3=83=A0=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 8 +++++++- style.css | 12 ++++++++---- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index e2a1972..01481de 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,13 @@

ケンサク

-

1. ジャンル

+
+ +
+ +

1. ジャンル別リンク集

プログラミング
diff --git a/style.css b/style.css index 3e89969..a474cf0 100644 --- a/style.css +++ b/style.css @@ -18,10 +18,6 @@ h1, h2, h3 font-weight: bold; } -h1 - { - } - dl, dt, dd, ul, ol, li, p, a { font-size: 100%; @@ -43,3 +39,11 @@ hr margin: 0; padding: 0; } + +input + { + margin: 0 1px 0 0; + padding: 0 0.5em; + border-width: thin; + line-height: 2; + } From 882cbb460940a5ca343026f9d6a040a860986c8e Mon Sep 17 00:00:00 2001 From: takashi Date: Wed, 3 Apr 2024 13:05:11 +0000 Subject: [PATCH 2/6] =?UTF-8?q?=E8=A9=B3=E7=B4=B0=E3=81=AACSS=E3=82=92?= =?UTF-8?q?=E8=A8=98=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- style.css | 87 ++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 70 insertions(+), 17 deletions(-) diff --git a/style.css b/style.css index a474cf0..756d61c 100644 --- a/style.css +++ b/style.css @@ -1,49 +1,102 @@ -/* Color */ +/* Kensaku Style, 2024-04-03 */ +html, body, h1, h2, h3, +form, p, hr, +dl, dt, dd, ul, ol, li, +a, input + { + border: none; + font-size: 100%; + font-weight: inherit; + margin: 0; + padding: 0; + } + +/* colors */ body { background: #120f12; color: #fcfcfc; } a:link { color: #6aa6eb; } a:visited { color: #ae6bdb; } -a:visited { color: #ea79d8; } a:active { color: #f35869; } a:hover { background: #443b44; } hr { border-color: #988f98; } -/* Font */ +input + { + background: #443b44; + border-color: #746c75; + color: #fcfcfc; + } -body { line-height: 1.5; } +input[type=submit] + { + background: #cfcbcf; + border-color: #cfcbcf; + color: #120f12; + } + +input[type=submit]:hover + { + background: #746c75; + border-color: #746c75; + color: #fcfcfc; + } + +/* end colors */ + +body + { + margin: 1em 0 0 1em; + line-height: 1.5; + } h1, h2, h3 { font-size: larger; font-weight: bold; + margin-bottom: 0.5em; } -dl, dt, dd, ul, ol, li, p, a +dl, ul, ol, p { - font-size: 100%; - font-weight: inherit; + margin-bottom: 1em; } -/* Decoration */ +dd, li + { + margin-left: 2em; + } -a { text-decoration: underline; } -a:hover { text-decoration: none; } - -dt { font-weight: bold; } +dt + { + font-weight: bold; + } hr { border-style: solid; border-width: thin 0 0; - height: 0; - margin: 0; - padding: 0; + } + +a + { + text-decoration: underline; + } + +a:hover + { + text-decoration: none; + } + +form li + { + list-style: none; } input { - margin: 0 1px 0 0; - padding: 0 0.5em; + border-style: solid; border-width: thin; + margin: 0 1em 0 0; + padding: 0 0.5em; line-height: 2; } From 02fa0bf065a59bf21664e3d54f9b621cf4520f59 Mon Sep 17 00:00:00 2001 From: takashi Date: Wed, 10 Apr 2024 11:14:21 +0000 Subject: [PATCH 3/6] =?UTF-8?q?HEAD=E3=81=AE=E7=B5=82=E4=BA=86=E3=82=BF?= =?UTF-8?q?=E3=82=B0=E3=82=92=E7=9C=81=E7=95=A5=E3=83=BBHTML=E3=81=AE?= =?UTF-8?q?=E7=B5=82=E4=BA=86=E3=82=BF=E3=82=B0=E3=82=92=E8=BF=BD=E5=8A=A0?= =?UTF-8?q?=20(=E3=81=93=E3=82=8C=E3=81=AFISO-HTML=E3=81=A7=E5=BF=85?= =?UTF-8?q?=E9=A0=88)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- blog.html | 7 +++++-- index.html | 7 +++++-- news.html | 7 +++++-- programming.html | 7 +++++-- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/blog.html b/blog.html index 6ffe737..e18e1ac 100644 --- a/blog.html +++ b/blog.html @@ -1,8 +1,9 @@ - + + -個人ブログ +個人ブログ
@@ -31,3 +32,5 @@
  • プシューサービス
  • 創作プロジェクトFreshmia + + diff --git a/index.html b/index.html index 01481de..80c04a9 100644 --- a/index.html +++ b/index.html @@ -1,8 +1,9 @@ - + + -ケンサク +ケンサク

    ケンサク

    @@ -23,3 +24,5 @@
    個人ブログ
    知人などのウェブサイト
  • + + diff --git a/news.html b/news.html index 791014f..67b53d6 100644 --- a/news.html +++ b/news.html @@ -1,8 +1,9 @@ - + + -時事問題・ニュース +時事問題・ニュース
    @@ -20,3 +21,5 @@

    2. 無題

    + + diff --git a/programming.html b/programming.html index 6fd681b..dff8134 100644 --- a/programming.html +++ b/programming.html @@ -1,8 +1,9 @@ - + + -プログラミング +プログラミング
    @@ -28,3 +29,5 @@

    2. 無題

    + + From 3dc108de4480b3712781fd3ca577dbe6c66765b4 Mon Sep 17 00:00:00 2001 From: takashi Date: Sat, 27 Apr 2024 14:33:02 +0000 Subject: [PATCH 4/6] =?UTF-8?q?=E6=A4=9C=E7=B4=A2=E3=82=B5=E3=82=A4?= =?UTF-8?q?=E3=83=88=E3=82=92=20searxh.gnu.style=20=E3=81=AB=E5=9B=BA?= =?UTF-8?q?=E5=AE=9A=20(=E7=B9=8B=E3=81=8C=E3=82=8A=E3=82=84=E3=81=99?= =?UTF-8?q?=E3=81=84=E3=81=8B=E3=82=89)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 80c04a9..1fc0bc8 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,8 @@

    ケンサク

    -
    + +
    From 6e9f3ae6d1317984ead00d016ca982fbc9d88375 Mon Sep 17 00:00:00 2001 From: takashi Date: Sat, 27 Apr 2024 14:35:39 +0000 Subject: [PATCH 5/6] =?UTF-8?q?=E8=A6=8B=E5=87=BA=E3=81=97=E3=82=92?= =?UTF-8?q?=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- news.html | 2 -- programming.html | 11 ++++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/news.html b/news.html index 67b53d6..5802526 100644 --- a/news.html +++ b/news.html @@ -20,6 +20,4 @@
    mixiニュースの代替フロントエンド
    -

    2. 無題

    - diff --git a/programming.html b/programming.html index dff8134..b63a310 100644 --- a/programming.html +++ b/programming.html @@ -12,11 +12,16 @@

    プログラミング

    -

    1. 歴史的なウェブサイト

    +

    1. ウェブ

    日本最初のホームページ
    日本最初の HTML は 1992年2月に非公開で作成され、同年9月30日に公開された
    +
    + +

    2. プライバシー

    + +
    XMPP clients - digdeeper.club
    XMPPに對するセキュリティのレビュー(英語) 有益さうなので追加した。
    @@ -24,10 +29,6 @@
    digdeeper.club
    英語でプライバシーに必要な拡張機能やブラウザーレビューをしている
    - -
    -

    2. 無題

    - From c5b4b04f85852820401b22e43631a3643f6b6ed3 Mon Sep 17 00:00:00 2001 From: takashi Date: Sat, 27 Apr 2024 15:10:28 +0000 Subject: [PATCH 6/6] =?UTF-8?q?=E3=83=97=E3=83=AD=E3=82=B0=E3=83=A9?= =?UTF-8?q?=E3=83=9F=E3=83=B3=E3=82=B0=E3=81=AB=E3=82=A6=E3=82=A7=E3=83=96?= =?UTF-8?q?=E9=96=A2=E4=BF=82=E3=81=AE=E3=82=B5=E3=82=A4=E3=83=88=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- programming.html | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/programming.html b/programming.html index b63a310..e2cc642 100644 --- a/programming.html +++ b/programming.html @@ -8,15 +8,48 @@
    Index
    ケンサク
    -
    Date
    2024-03-26
    +
    Date
    2024-04-28

    プログラミング

    1. ウェブ

    +

    記事

    +
    日本最初のホームページ
    日本最初の HTML は 1992年2月に非公開で作成され、同年9月30日に公開された
    + +
    ごく簡単なHTMLの説明
    +
    HTML4 をベースとしつつ、HTML 5 の事情も踏まへた解説
    + +
    良質なテキストサイトの爲のISO-HTML入門
    +
    ISO-HTML をベースとした解説
    + +
    はじめてのWebドキュメントづくり
    +
    HTML4 の易しい解説
    + +
    + +

    仕様など

    + +
    + +
    HTML Standard 日本語
    +
    「WHATWG 版 HTML」仕様書の日本語訳
    + +
    ハイパテキストマーク付け言語(JIS X 4156:2000)の利用者ガイド
    +
    ISO-HTML の利用者ガイドの日本語訳
    + +
    HTML 4.01 Specification (ja)
    +
    HTML 4.01 の仕様書の日本語版 (廃止された規格だが参考になる)
    + +
    HTML 4.0 Reference(jp)
    +
    「HTML 4.0 参考書」(廃止された規格だが参考になる)
    + +
    Guide to Cascading Style Sheets(jp)
    +
    CSS1 の頃の解説 (内容の大半は今でも有效なはず)
    +

    2. プライバシー