diff --git a/ReadMe.txt b/ReadMe.txt deleted file mode 100644 index 7e43198..0000000 --- a/ReadMe.txt +++ /dev/null @@ -1,14 +0,0 @@ -Steps to have a searchable offline directory from this repo: - -1. Download, Clone or Fork this Repo. (links won't work as is) -2. Download and install Snap2HTML for your system. (https://github.com/rlv-dan/Snap2HTML) -3. Open Snap2HTML and select the "HOME" directory as your root folder. -4. Rename the Page title from the long "Snapshot of..." to something cool like "Survival Data". -5. Make sure to Enable Linked files. -6. Click "Create Snapshot" -7. Save the HTML page as the index.html located in the repo root. -8. enjoy an offline searchable Survival database. - -Good luck! - -- PR0M3TH3AN diff --git a/iconmonstr-danger-5-240.ico b/iconmonstr-danger-5-240.ico deleted file mode 100644 index 8349acb..0000000 Binary files a/iconmonstr-danger-5-240.ico and /dev/null differ diff --git a/iconmonstr-danger-5-240.png b/iconmonstr-danger-5-240.png deleted file mode 100644 index 7fd156e..0000000 Binary files a/iconmonstr-danger-5-240.png and /dev/null differ diff --git a/index.html b/index.html index 507a275..dd29375 100644 --- a/index.html +++ b/index.html @@ -1,1797 +1,380 @@ - - - - - - - - - - Survival Data - - - - - - - - - - - - - - - + - - - -
- -
+ +
+

Survival Guide

+
+
+
+

Basics

+ + +
+

Edible and Medicinal Plants

+ +
+ +
+

Electronics

+ +
+ +
+

Food Preservation

+ +
- +
+

Food Production & Recipes

+ +
- - -

Survival Data

-
243 files in 19 folders (1524875467)
Generated 4/19/2022 8:01 PM by Snap2HTML
- -
- -
Loading...

(if nothing happens, make sure javascript is enabled and allowed to execute, or try another browser)

+
+

Foraging

+ +
-
-
- -
-
- Searching... -
-
-
- -
-
- -
- -
-
-
- × Close - Show: - - - -
-
- - - - - Columns: - - - - - -
- - -
-
Tip: Search for * to export all files and folders
-
- +
+

How-to and Bushcraft

+ +
+ +
+

Hunting & Trapping

+ +
+ +
+

Knots

+ +
+ +
+

Medicine

+ +
+ +
+

Military Manuals

+ +
+ +
+

Nuclear Threats

+ +
+ +
+

Old & New Recipes

+ +
+ +
+

Quick Guides & Checklists

+ +
+ +
+

Shelters

+ +
+ +
+

Survival Manuals

+ +
+ +
+

Traditional Ways

+ +
+ +
+

Water

+ +
+ + + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..f3a777a --- /dev/null +++ b/styles.css @@ -0,0 +1,132 @@ +/* General styles */ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + background-color: #121212; + color: #e0e0e0; + display: flex; + flex-direction: column; + align-items: center; +} + +header { + background-color: #1f1f1f; + color: white; + padding: 20px; + text-align: center; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + width: 100%; +} + +header h1 { + margin: 0; +} + +nav ul { + list-style: none; + padding: 0; + margin: 0; + display: flex; + justify-content: center; + flex-wrap: wrap; +} + +nav ul li { + margin: 5px 10px; +} + +nav ul li a { + color: white; + text-decoration: none; + padding: 10px 15px; + border-radius: 5px; + transition: background 0.3s; +} + +nav ul li a:hover { + background: #007BFF; +} + +main { + padding: 20px; + max-width: 800px; + width: 100%; +} + +section { + margin-bottom: 10px; +} + +h2 { + font-size: 1.2em; + margin: 0; + padding: 10px; + background-color: #1f1f1f; + color: white; + cursor: pointer; + border-bottom: 1px solid #007BFF; + border-radius: 5px; + transition: background 0.3s; + text-align: center; +} + +h2:hover { + background-color: #007BFF; +} + +ul { + list-style: none; + padding: 0; + display: none; /* Hide the list by default */ + margin: 0; + background-color: #2a2a2a; + border-radius: 5px; + overflow: hidden; + text-align: center; +} + +ul li { + padding: 10px; + border-bottom: 1px solid #444; +} + +ul li:last-child { + border-bottom: none; +} + +ul li a { + text-decoration: none; + color: #007BFF; + display: block; + transition: background 0.3s; +} + +ul li a:hover { + background: #333; +} + +footer { + background-color: #1f1f1f; + color: white; + text-align: center; + padding: 10px 0; + position: fixed; + width: 100%; + bottom: 0; + box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2); +} + +/* Responsive design */ +@media (max-width: 600px) { + header h1 { + font-size: 1.5em; + } + h2 { + font-size: 1em; + } + nav ul { + flex-direction: column; + align-items: center; + } +}