diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 4008cfc..c3c4f3c 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,8 +1,6 @@ @@ -113,27 +138,27 @@
-
-
- {#each results.tech_tags.categories as category} - {category} +
+
+ {#each categories as category} + {category} {/each}
-
+
- {#each results.instance_tags.statuses as status} - {status} + {#each statuses as status} + {status} {/each}
- {#each results.instance_tags.affiliates as affiliate} - {affiliate} + {#each affiliates as affiliate} + {affiliate} {/each}
- {#each results.instance_tags.hosts as host} - {host} + {#each hosts as host} + {host} {/each}
@@ -174,6 +199,17 @@ } .filters { } + .filters .tags { + background-color: #f1ff94; + padding: 0.5em; + border: 3px solid #cbea77; + margin: 1em 0; + } + .tag { + font-size: 80%; + color: #777; + margin-right: 1em; + } .tiles { display: grid; grid-gap: 15px; @@ -189,28 +225,5 @@ border: solid 3px #1e6831; background-color: #fff; } -/* .technology { - background-color: #fff; - } - .instances { - background-color: #ddd; - } */ .webservices li { list-style-type: none; } - /* - * Breakpoints - */ - @media all and (max-width: 500px) { - .collapse { display: block; } - .collapse > .cell { width: 100% !important; } - } - /* .no-flexbox .webservices { - display: block; - .no-flexbox .webservices > cell { width: 100%; } - } - div { - h2 { - color: green; - } - }*/ -