basic cursor moving

This commit is contained in:
Mona Mayrhofer 2026-02-28 22:24:42 +01:00
parent e4d51f09a1
commit 966fdbbd50
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 374AB152BDEBA1AE
29 changed files with 7052 additions and 52 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

View file

@ -0,0 +1,11 @@
.container {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: stretch;
align-items: stretch;
& > * {
flex-grow: 1;
}
}

View file

@ -0,0 +1,14 @@
html,
body,
#main {
margin: 0;
padding: 0;
min-height: 100vh;
width: 100vw;
}
#main {
background-color: #214;
display: flex;
flex-direction: column;
}

View file

@ -0,0 +1,5 @@
.mouse-area {
background-color: white;
touch-action: none;
}

View file

@ -0,0 +1,16 @@
.navbar {
display: flex;
flex-direction: row;
}
.navbar a {
color: #ffffff;
margin-right: 20px;
text-decoration: none;
transition: color 0.2s ease;
}
.navbar a:hover {
cursor: pointer;
color: #91a4d2;
}