🏳️‍⚧️

This commit is contained in:
nora 2024-08-02 16:27:12 +02:00
parent 9a7bce392c
commit ce88f65f92
6 changed files with 71 additions and 34 deletions

View file

@ -14,7 +14,7 @@
//! ```toml //! ```toml
//! [[submodule]] //! [[submodule]]
//! name = "nixos" //! name = "nixos"
//! url = "https://github.com/Nilstrieb/nixos.git" //! url = "https://github.com/Noratrieb/nixos.git"
//! commit = "c5b2fc10b9266b105d792d958b8f13479866a7bd" //! commit = "c5b2fc10b9266b105d792d958b8f13479866a7bd"
//! ``` //! ```
//! //!

View file

@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>nilstrieb.dev</title> <title>noratrieb.dev</title>
<link rel="stylesheet" href="static/theme.css" /> <link rel="stylesheet" href="static/theme.css" />
</head> </head>
<body> <body>
@ -71,7 +71,8 @@
<div> <div>
<h2>cargo-bisect-rustc-service</h2> <h2>cargo-bisect-rustc-service</h2>
<p> <p>
<a href="https://github.com/Nilstrieb/cargo-bisect-rustc-service">webscale bisection</a> at your fingertips <a href="https://github.com/Noratrieb/cargo-bisect-rustc-service">webscale bisection</a>
at your fingertips
</p> </p>
<a href="https://bisect-rustc.nilstrieb.dev/" class="call-to-action"> <a href="https://bisect-rustc.nilstrieb.dev/" class="call-to-action">
<span>bisect-rustc.nilstrieb.dev</span> <span>bisect-rustc.nilstrieb.dev</span>

View file

@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>nilstrieb.dev</title> <title>noratrieb.dev</title>
<link rel="stylesheet" href="static/theme.css" /> <link rel="stylesheet" href="static/theme.css" />
<style> <style>
.hint { .hint {
@ -53,30 +53,42 @@
<body class="overflow-hidden"> <body class="overflow-hidden">
<div class="main-content"> <div class="main-content">
<div class="main-content-inner"> <div class="main-content-inner">
<h1>Nilstrieb's website</h1> <h1>Noratrieb's website</h1>
<div> <div class="columns-2">
<p> <div>
this is my website. you'll find lots of interesting and not very interesting stuff here, <div>
depending on where you look. <p>
</p> hi, i'm nora 🏳️‍⚧️. this is my website. you'll find lots of interesting and not very
<p> interesting stuff here, depending on where you look.
there may be many </p>
<span onclick="onSecretClick()" class="secret hint" role="button">secrets</span> <p>
depending on where you look.... there may be many
</p> <span onclick="onSecretClick()" class="secret hint" role="button">secrets</span>
</div> depending on where you look....
<div> </p>
<h2>socials</h2> </div>
<p> <div>
these two are not everything, but you may find more there, like a choose your own <h2>socials</h2>
adventure story: choose your own nils <p>
</p> these two are not everything, but you may find more there, like a choose your own
<a href="https://github.com/Nilstrieb" adventure story: choose your own nora
><img class="social-logo" alt="GitHub" src="static/github.svg" </p>
/></a> <a href="https://github.com/Noratrieb">
<a href="https://hachyderm.io/@nilstrieb" <img class="social-logo" alt="GitHub" src="static/github.svg" />
><img class="social-logo" alt="Mastodon" src="static/mastodon.png" </a>
/></a> <a href="https://hachyderm.io/@nilstrieb">
<img class="social-logo" alt="Mastodon" src="static/mastodon.png" />
</a>
</div>
</div>
<div>
<img
height="200"
src="static/Noratrieb.png"
alt="Two grey cartoon-cats on a pink background. The left cat is small and sits on a floating rocket, the right cat is big and has a red bow tie on the right ear."
style="margin-left: 15px;"
/>
</div>
</div> </div>
<div> <div>
<h2>my blog</h2> <h2>my blog</h2>
@ -105,7 +117,9 @@
in addition to all the other stuff mentioned above, i also have some random projects in addition to all the other stuff mentioned above, i also have some random projects
hosted on my server. they are pretty bad and i won't promote them this openly, but you hosted on my server. they are pretty bad and i won't promote them this openly, but you
will be able to find them if you really want to. some people have been saying that there will be able to find them if you really want to. some people have been saying that there
might be a secret <span role="button" class="hint" onclick="onBackalleyClick()">b</span>ack alley somewhere... might be a secret
<span role="button" class="hint" onclick="onBackalleyClick()">b</span>ack alley
somewhere...
</p> </p>
</div> </div>
</div> </div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View file

@ -1,3 +1,7 @@
html {
--accept-color: #e5a5c2;
}
body { body {
font-family: Verdana, sans-serif; font-family: Verdana, sans-serif;
background-color: #e6dae9; background-color: #e6dae9;
@ -16,7 +20,7 @@ body {
} }
} }
@media (min-width: 1200px) { @media (min-width: 1300px) {
.main-content-inner { .main-content-inner {
width: 50vw; width: 50vw;
} }
@ -25,7 +29,7 @@ body {
.call-to-action { .call-to-action {
width: 250px; width: 250px;
height: 50px; height: 50px;
background-color: #8c499d; background-color: var(--accept-color);
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@ -44,9 +48,23 @@ body {
} }
.call-to-action * { .call-to-action * {
color: white; color: black;
} }
.columns-2 {
display: flex;
flex-direction: row;
}
@media (max-width: 1000px) {
.columns-2 {
display: block;
margin-bottom: 10px;
}
}
@media (prefers-color-scheme: light) { @media (prefers-color-scheme: light) {
body { body {
background-color: #e6dae9; background-color: #e6dae9;
@ -64,6 +82,10 @@ body {
color: #e6dae9; color: #e6dae9;
} }
a {
color: var(--accept-color);
}
.secret { .secret {
color: #a081a9; color: #a081a9;
} }

View file

@ -1,9 +1,9 @@
[[submodule]] [[submodule]]
name = "blog" name = "blog"
url = "https://github.com/Nilstrieb/nilstrieb.github.io.git" url = "https://github.com/Noratrieb/nilstrieb.github.io.git"
commit = "a48053540e1bc85403c25526de304e82f5371a22" commit = "a48053540e1bc85403c25526de304e82f5371a22"
[[submodule]] [[submodule]]
name = "slides" name = "slides"
url = "https://github.com/Nilstrieb/slides.git" url = "https://github.com/Noratrieb/slides.git"
commit = "0401f35c22b124b69447655f0c537badae9e223c" commit = "0401f35c22b124b69447655f0c537badae9e223c"