diff --git a/css/test.css b/css/test.css deleted file mode 100644 index 6f8956d..0000000 --- a/css/test.css +++ /dev/null @@ -1,85 +0,0 @@ -body { - font-family: 'Arial', sans-serif; - line-height: 1.6; - color: #333; - background-color: #f4f4f4; - margin: 0; - padding: 0; -} - -.dropdown { - background-color: #4CAF50; - position: sticky; - top: 0; - z-index: 1000; -} - -#dropdown__btn { - background-color: #4CAF50; - color: white; - padding: 10px; - font-size: 10px; - border: none; - cursor: pointer; -} - -.dropdown-content { - display: none; - position: absolute; - background-color: #f9f9f9; - min-width: 160px; - box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -} - -.dropdown-content a { - color: black; - padding: 12px 16px; - text-decoration: none; - display: block; -} - -.dropdown-content a:hover { - background-color: #f1f1f1; -} - -.dropdown:hover .dropdown-content { - display: block; -} - -h1 { - color: #2E8B57; - text-align: center; - padding: 20px 0; -} - -h2 { - color: #20B2AA; -} - -div { - background-color: white; - margin: 20px; - padding: 20px; - border-radius: 5px; - box-shadow: 0 0 10px rgba(0,0,0,0.1); -} - -a { - color: #1E90FF; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -#mem p { - margin: 5px 0; -} - -@media (max-width: 600px) { - div { - margin: 10px; - padding: 10px; - } -} diff --git a/html/test.html b/html/test.html deleted file mode 100644 index 090c4b6..0000000 --- a/html/test.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - kisopro - - - - - - -

地元食材クイズ

- -
-

メンバー紹介

-

プログラム

-

阿彦 友大

-

土田 智也

- -

HTML

-

鈴木 涼馬

- -

発表

-

佐藤 万優子

-

吉田 佳織

- -

資料づくり

-

山本 幸弥

-

石谷 翔渉

-
- -
-

プログラム紹介

-
- -
-

プログラムについて

-
- - - - - -
-

参考文献

-
- - - - - - \ No newline at end of file diff --git a/js/test.js b/js/test.js deleted file mode 100644 index 751b897..0000000 --- a/js/test.js +++ /dev/null @@ -1,15 +0,0 @@ -document.addEventListener('DOMContentLoaded', function() { - const btn = document.getElementById('dropdown__btn'); - const dropdownContent = document.querySelector('.dropdown-content'); - - btn.addEventListener('click', function(event) { - event.stopPropagation(); - dropdownContent.classList.toggle('show'); - }); - - document.addEventListener('click', function(event) { - if (!event.target.closest('.dropdown')) { - dropdownContent.classList.remove('show'); - } - }); - }); \ No newline at end of file diff --git "a/pdf/c1231033\344\275\220\350\227\244\351\242\250\351\246\254\347\254\254\345\205\255\345\233\236.pdf" "b/pdf/c1231033\344\275\220\350\227\244\351\242\250\351\246\254\347\254\254\345\205\255\345\233\236.pdf" deleted file mode 100644 index 99f686e..0000000 --- "a/pdf/c1231033\344\275\220\350\227\244\351\242\250\351\246\254\347\254\254\345\205\255\345\233\236.pdf" +++ /dev/null Binary files differ diff --git "a/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C \347\254\25410\345\233\236.pdf" "b/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C \347\254\25410\345\233\236.pdf" deleted file mode 100644 index f3f6500..0000000 --- "a/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C \347\254\25410\345\233\236.pdf" +++ /dev/null Binary files differ diff --git "a/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C-\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" "b/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C-\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" deleted file mode 100644 index e3fc34d..0000000 --- "a/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C-\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" +++ /dev/null Binary files differ diff --git "a/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C_\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" "b/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C_\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" deleted file mode 100644 index 27f8831..0000000 --- "a/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C_\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" +++ /dev/null Binary files differ diff --git a/program/css/test.css b/program/css/test.css new file mode 100644 index 0000000..6f8956d --- /dev/null +++ b/program/css/test.css @@ -0,0 +1,85 @@ +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + color: #333; + background-color: #f4f4f4; + margin: 0; + padding: 0; +} + +.dropdown { + background-color: #4CAF50; + position: sticky; + top: 0; + z-index: 1000; +} + +#dropdown__btn { + background-color: #4CAF50; + color: white; + padding: 10px; + font-size: 10px; + border: none; + cursor: pointer; +} + +.dropdown-content { + display: none; + position: absolute; + background-color: #f9f9f9; + min-width: 160px; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); +} + +.dropdown-content a { + color: black; + padding: 12px 16px; + text-decoration: none; + display: block; +} + +.dropdown-content a:hover { + background-color: #f1f1f1; +} + +.dropdown:hover .dropdown-content { + display: block; +} + +h1 { + color: #2E8B57; + text-align: center; + padding: 20px 0; +} + +h2 { + color: #20B2AA; +} + +div { + background-color: white; + margin: 20px; + padding: 20px; + border-radius: 5px; + box-shadow: 0 0 10px rgba(0,0,0,0.1); +} + +a { + color: #1E90FF; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +#mem p { + margin: 5px 0; +} + +@media (max-width: 600px) { + div { + margin: 10px; + padding: 10px; + } +} diff --git a/program/html/test.html b/program/html/test.html new file mode 100644 index 0000000..090c4b6 --- /dev/null +++ b/program/html/test.html @@ -0,0 +1,67 @@ + + + + + + + + kisopro + + + + + + +

地元食材クイズ

+ +
+

メンバー紹介

+

プログラム

+

阿彦 友大

+

土田 智也

+ +

HTML

+

鈴木 涼馬

+ +

発表

+

佐藤 万優子

+

吉田 佳織

+ +

資料づくり

+

山本 幸弥

+

石谷 翔渉

+
+ +
+

プログラム紹介

+
+ +
+

プログラムについて

+
+ + + + + +
+

参考文献

+
+ + + + + + \ No newline at end of file diff --git a/program/js/test.js b/program/js/test.js new file mode 100644 index 0000000..751b897 --- /dev/null +++ b/program/js/test.js @@ -0,0 +1,15 @@ +document.addEventListener('DOMContentLoaded', function() { + const btn = document.getElementById('dropdown__btn'); + const dropdownContent = document.querySelector('.dropdown-content'); + + btn.addEventListener('click', function(event) { + event.stopPropagation(); + dropdownContent.classList.toggle('show'); + }); + + document.addEventListener('click', function(event) { + if (!event.target.closest('.dropdown')) { + dropdownContent.classList.remove('show'); + } + }); + }); \ No newline at end of file diff --git "a/program/pdf/c1231033\344\275\220\350\227\244\351\242\250\351\246\254\347\254\254\345\205\255\345\233\236.pdf" "b/program/pdf/c1231033\344\275\220\350\227\244\351\242\250\351\246\254\347\254\254\345\205\255\345\233\236.pdf" new file mode 100644 index 0000000..99f686e --- /dev/null +++ "b/program/pdf/c1231033\344\275\220\350\227\244\351\242\250\351\246\254\347\254\254\345\205\255\345\233\236.pdf" Binary files differ diff --git "a/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C \347\254\25410\345\233\236.pdf" "b/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C \347\254\25410\345\233\236.pdf" new file mode 100644 index 0000000..f3f6500 --- /dev/null +++ "b/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C \347\254\25410\345\233\236.pdf" Binary files differ diff --git "a/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C-\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" "b/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C-\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" new file mode 100644 index 0000000..e3fc34d --- /dev/null +++ "b/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C-\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" Binary files differ diff --git "a/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C_\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" "b/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C_\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" new file mode 100644 index 0000000..27f8831 --- /dev/null +++ "b/program/pdf/\343\202\260\343\203\253\343\203\274\343\203\227C_\344\273\213\350\255\267\343\202\242\343\203\253\343\203\220\343\202\244\343\203\210.pdf" Binary files differ