From a04a9b248a5daa22bc839aeb9b4609d67622cb44 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Thu, 24 Aug 2023 13:13:06 +0200 Subject: [PATCH] initial commit --- .gitignore | 2 ++ index.css | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 197 insertions(+) create mode 100644 .gitignore create mode 100644 index.css create mode 100644 index.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8936847 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.fleet +.idea diff --git a/index.css b/index.css new file mode 100644 index 0000000..db0fa74 --- /dev/null +++ b/index.css @@ -0,0 +1,96 @@ +body { + background: #191c2e; +} + +.tabs li { + display: inline-block; + padding-left: 2px; +} + +.tabs li a { + position: relative; +} + +.tab-svg-path { + position: absolute; + fill: #21253c; + stroke: #690455; + stroke-width: 4; + stroke-miterlimit: 10; + pointer-events: all; +} + +.tab-svg-text { + fill: #FFFFFF; + font-family: "Roboto"; + font-size: 18px; + text-anchor: middle; +} + +#tabs-main { + float: left; + margin-left: 32px; + padding: 0; + list-style: none; +} + +#tabs-account { + float: right; + margin-right: 32px; + padding: 0; + list-style: none; +} + +main { + position: absolute; + padding: 0; + margin-left: 32px; + margin-right: 32px; + margin-top: 86px; + width: calc(100% - 86px); + height: calc(100% - 150px); + border: 4px solid #690455; + border-radius: 12px; +} + +.content { + margin: 12px; + height: calc(100% - 48px); + width: calc(100% - 24px); +} + +#content-boxes { + columns: 3; + height: 100%; + display: flex; + list-style: none; +} + +.content-box { + background: #21253c; + border: 4px solid #690455; + border-radius: 12px; + margin-right: 32px; + width: auto; + height: auto; + position: relative; + display: inline-block; + padding: 16px; +} + +.content-box-heading { + font-family: Roboto; + font-weight: bold; + font-size: 24px; + color: #FFFFFF; + text-align: center; + width: 100%; +} + +.content-box-paragraph { + font-family: Roboto; + font-size: 18px; + color: #FFFFFF; + text-align: center; + width: 100%; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..fd5b9d2 --- /dev/null +++ b/index.html @@ -0,0 +1,99 @@ + + + + + Nerdcult + + + + + + +
+
+
    +
  • +

    Community

    + +

    + Nerdcult is a platform for (and by) open source + software developers, that aims to make collaboration + as comfortable as possible. We also want to make + it as easy as possible for users to find contributors + for their projects. + Join now by creating an account. +

    +
  • + +
  • +

    Tools

    + +

    + We provide tools for software development, communication and project management. + This includes a git server, a matrix homeserver, pads and much more :) +

    +
  • + +
  • +

    Privacy

    + +

    + We save as less personal data as possible and our logs are anonymized. + Your private data, is encrypted with a key that derives from your password. + By that we couldn't sell data and give attackers nothing they could steal. +

    +
  • +
+
+
+ + + \ No newline at end of file