From 2f467bd7ff8f8db0dafa40426166491d7f57f368 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 25 Apr 2026 12:46:05 -0400 Subject: Initial Commit --- static/.DS_Store | Bin 0 -> 6148 bytes static/css/main.css | 93 ++++++++++++++++++++++++++++++++++++++ static/logos/FirstInitialLogo.svg | 60 ++++++++++++++++++++++++ static/logos/FullNameLogo.svg | 60 ++++++++++++++++++++++++ static/logos/favicon.png | Bin 0 -> 2494 bytes static/logos/favicon.svg | 67 +++++++++++++++++++++++++++ static/logos/favicon16.png | Bin 0 -> 777 bytes static/logos/favicon32.png | Bin 0 -> 1676 bytes static/robots.txt | 6 +++ 9 files changed, 286 insertions(+) create mode 100644 static/.DS_Store create mode 100755 static/css/main.css create mode 100644 static/logos/FirstInitialLogo.svg create mode 100644 static/logos/FullNameLogo.svg create mode 100644 static/logos/favicon.png create mode 100644 static/logos/favicon.svg create mode 100644 static/logos/favicon16.png create mode 100644 static/logos/favicon32.png create mode 100755 static/robots.txt (limited to 'static') diff --git a/static/.DS_Store b/static/.DS_Store new file mode 100644 index 00000000..14762ed1 Binary files /dev/null and b/static/.DS_Store differ diff --git a/static/css/main.css b/static/css/main.css new file mode 100755 index 00000000..2a42ca85 --- /dev/null +++ b/static/css/main.css @@ -0,0 +1,93 @@ +/* + * Color scheme + * Background color: #eaefef + * Code background: #d4d9d9 + * Main color: #00558e + * Secondary color: #0b3075 + */ +:root { + --color-1: #eaefef; + --color-2: #d4d9d9; + --color-3: #0c7a9c; + --color-3: #00558e; + --color-4: #0b3075; +} + +body{ + background-color:var(--color-1); + color:var(--color-3); + font-family:Arial; + padding-bottom: 2em; +} + +a{ + color: var(--color-3); +} + +ul.topBar{ + background-color:var(--color-3); + text-transform:uppercase; + margin:0; + padding:0; + overflow:hidden; + list-style-type:none; +} + +li.topLink a{ + color:var(--color-1); + float:left; + display:block; + text-align:center; + padding:0.875rem 1rem; + text-decoration:none; +} + +li.topLink a:hover{ + background-color:var(--color-4); +} + +.search{ + color:var(--color-3); + background-color:var(--color-1); + border-color:var(--color-3); + padding:0.75rem 1.25rem 0.75rem; + width:90%; + border-radius:0.3125rem; + margin-left:auto; + margin-right:auto; + margin-bottom:15em; + font-family:IBM Plex Mono; +} + +.main{ + margin:auto; + width:60%; +} + +.icon{ + font-size:12.5rem; + margin-top:0.625rem; + margin-bottom:0.625rem; +} + +footer.LicenseFooter{ + font-size:1em; + padding-top:2em; + text-align:center; +} + +@media only screen and (orientation: portrait){ + .main{ + margin:auto; + width:90%; + } +} + +div.article a{ + text-decoration:none; + display:block; +} + +img { + width:75%; +} diff --git a/static/logos/FirstInitialLogo.svg b/static/logos/FirstInitialLogo.svg new file mode 100644 index 00000000..d2d13f9d --- /dev/null +++ b/static/logos/FirstInitialLogo.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + diff --git a/static/logos/FullNameLogo.svg b/static/logos/FullNameLogo.svg new file mode 100644 index 00000000..4ee480b9 --- /dev/null +++ b/static/logos/FullNameLogo.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + diff --git a/static/logos/favicon.png b/static/logos/favicon.png new file mode 100644 index 00000000..e403c28d Binary files /dev/null and b/static/logos/favicon.png differ diff --git a/static/logos/favicon.svg b/static/logos/favicon.svg new file mode 100644 index 00000000..dfe4bb99 --- /dev/null +++ b/static/logos/favicon.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + diff --git a/static/logos/favicon16.png b/static/logos/favicon16.png new file mode 100644 index 00000000..e830c368 Binary files /dev/null and b/static/logos/favicon16.png differ diff --git a/static/logos/favicon32.png b/static/logos/favicon32.png new file mode 100644 index 00000000..eed6d113 Binary files /dev/null and b/static/logos/favicon32.png differ diff --git a/static/robots.txt b/static/robots.txt new file mode 100755 index 00000000..14067d6e --- /dev/null +++ b/static/robots.txt @@ -0,0 +1,6 @@ +User-agent: * +Disallow: /css +Disallow: /images +Disallow: /404.html +Disallow: /testPage + -- cgit v1.2.3