Compare commits

...

6 Commits
main ... main

Author SHA1 Message Date
Garrit Franke fccca87cd7 footer: update copyright 2 years ago
Garrit Franke e34c9bd675 feat: link to matrix lobby 3 years ago
Garrit Franke 98a645e49e
fix: invalid comment 3 years ago
Garrit Franke 55154c7468
feat: plausible analytics 3 years ago
Garrit Franke e354e27d20
Remove social.slashdev.space 3 years ago
TobTobXX 9f3c3c1cb4 Give some care for the scrollbars (#5) 3 years ago
  1. 23
      index.html
  2. 4
      styles/darkmode.css
  3. 5
      styles/index.css

23
index.html

@ -9,6 +9,9 @@
<title>/dev.space</title>
<link rel="stylesheet" href="styles/index.css" />
<link rel="shortcut icon" href="favicon.svg" type="image/svg+xml" />
<!-- Plausible analytics -->
<script async defer data-domain="slashdev.space" src="https://analytics.slashdev.space/js/plausible.js"></script>
</head>
<body>
<section class="welcome">
@ -73,20 +76,6 @@
<p>Get agile</p>
</a>
</div>
<div class="services__offers__card">
<h1 class="services__offers__card__heading">
Fediverse
</h1>
<p class="services__offers__card__description">
We host our own federated social media instance.
</p>
<a
href="https://social.slashdev.space"
class="button__link"
>
<p>Toot with us</p>
</a>
</div>
</div>
</div>
</section>
@ -100,8 +89,8 @@
</p>
<a
class="button__link button__contact"
href="https://matrix.to/#/+community:matrix.slashdev.space"
><p>+community:matrix.slashdev.space</p></a
href="https://matrix.to/#/#lobby:matrix.slashdev.space"
><p>#lobby:matrix.slashdev.space</p></a
>
</div>
</section>
@ -129,7 +118,7 @@
</section>
</body>
<footer>
Copyright © 2021 Garrit Franke and /dev.space contributers.<br />
Copyright © 2022 <a href="https://garrit.xyz">Garrit Franke</a> and /dev.space contributers.<br />
This website is licensed under the
<a
href="https://git.slashdev.space/garrit/slashdev.space-landing/src/branch/main/LICENSE"

4
styles/darkmode.css

@ -4,6 +4,10 @@
color: #dbd7db;
}
html {
scrollbar-color: #dbd7db #161618 !important;
}
.button__link {
background-color: #67676c;
}

5
styles/index.css

@ -22,10 +22,15 @@
font-style: italic;
}
html {
scrollbar-color: black white;
}
body {
margin: 0;
font-family: "Work Sans", sans-serif;
font-weight: 250;
overflow-x: hidden;
text-align: center;
}

Loading…
Cancel
Save