diff --git a/www/banner.svg b/www/banner.svg new file mode 100644 index 0000000..d41e286 --- /dev/null +++ b/www/banner.svg @@ -0,0 +1,2313 @@ + + + + diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..6ec5a0a --- /dev/null +++ b/www/index.html @@ -0,0 +1,98 @@ + + + + + + + + venndb + + + + + + + + + + + + + + + + + + + + + +
+
+ venndb banner +

+ An in-memory database in Rust for rows queried using bit (flag) columns. + This database is designed for a very specific use case where you have mostly static data that you + typically load at startup and have to query constantly using very simple filters. Datasets + like these can be large and should be both fast and compact. +

+ + +
+
+ + + \ No newline at end of file diff --git a/www/style.css b/www/style.css new file mode 100644 index 0000000..4d90c21 --- /dev/null +++ b/www/style.css @@ -0,0 +1,109 @@ +*, +*::before, +*::after { + box-sizing: border-box; +} + +* { + margin: 0; +} + +body { + line-height: 1.5; + -webkit-font-smoothing: antialiased; + background-color: #fef9ef; +} + +img, +picture, +video, +canvas, +svg { + display: block; + max-width: 100%; +} + +input, +button, +textarea, +select { + font: inherit; +} + +p, +h1, +h2, +h3, +h4, +h5, +h6 { + overflow-wrap: break-word; +} + +h1 a { + text-decoration: none; + font-weight: bold; + color: darkblue; +} + +#root, +#__next { + isolation: isolate; +} + +main { + margin: 0 auto; + padding: 0 15px; + max-width: 800px; + height: 100vh; + display: grid; + /* grid spread even vertically */ + align-items: center; + justify-items: center; +} + +#about { + margin: 0 auto; + padding: 10px; +} + +.copy-button { + text-align: start; + cursor: pointer; + display: flex; + align-items: center; + justify-content: space-between; + font-size: 14px; + line-height: 1.5em; + border: solid 1px grey; + margin: 10px auto; +} + +.copy-button>span { + padding: 10px; +} + +.copy-button:hover { + background-color: #fff; +} + +#menu { + margin: 20px auto; + padding: 10px; +} + +#menu ul { + list-style-type: none; + overflow: hidden; + text-align: center; + padding: 0; +} + +#menu li { + display: inline-block; + margin: 5px; +} + +#menu img { + height: 25px; +} \ No newline at end of file diff --git a/www/venndb_social_media.jpeg b/www/venndb_social_media.jpeg new file mode 100644 index 0000000..94f816f Binary files /dev/null and b/www/venndb_social_media.jpeg differ