diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..19f425e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +src/_site +src/Gemfile.lock diff --git a/src/css/stylesheet.css b/src/css/stylesheet.css new file mode 100644 index 0000000..9657234 --- /dev/null +++ b/src/css/stylesheet.css @@ -0,0 +1,53 @@ +body { + border-collapse: collapse; + font-family: 'Roboto', sans-serif; + text-align: center; + width: 100%; +} + +table { + table-layout: fixed; + width: 100px; +} + +#entries td, #entries th { + border: 1px solid #ddd; + padding: 8px; +} + +#entries tr:nth-child(even) { + background-color: #f2f2f2; +} + +#entries tr:hover { + background-color: #ddd; +} + +#entries { + border-collapse: collapse; + border: 1px solid #ddd; + font-size: 18px; + width: 100%; +} + +#entries th { + background-color: #4783e5; + color: white; + padding-top: 12px; + padding-bottom: 12px; + text-align: center; +} + +.isHidden { + display: none; +} + +#searchbox { + border: 1px solid #ddd; + border-radius: 50px; + margin-bottom: 12px; + font-size: 16px; + padding: 12px 20px 12px 40px; + text-align: center; + width: 50%; +} \ No newline at end of file diff --git a/src/favicon.ico b/src/favicon.ico new file mode 100644 index 0000000..8f45dd7 Binary files /dev/null and b/src/favicon.ico differ diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..e17468d --- /dev/null +++ b/src/index.html @@ -0,0 +1,56 @@ + + + +
+ + + + + + +| API | +Description | +Auth | +HTTPS | +Category | +
|---|---|---|---|---|
| {{ item.API }} | +{{ item.Description }} | +{{ (item.Auth) ? item.Auth : '-' }} | +{{ (item.HTTPS) ? '✔' : '✖' }} | +{{ item.Category }} | +