rename to cursor-mover-webapp
This commit is contained in:
parent
201f0e5f0a
commit
cc52e3e781
35 changed files with 7 additions and 7 deletions
|
|
@ -0,0 +1,3 @@
|
|||
.controls {
|
||||
flex-grow: 1;
|
||||
}
|
||||
13
crates/cursor-mover-webapp/assets/styling/home.module.css
Normal file
13
crates/cursor-mover-webapp/assets/styling/home.module.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.container {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: stretch;
|
||||
align-items: stretch;
|
||||
|
||||
& > * {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
.keyboard-area {
|
||||
height: 48px;
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
15
crates/cursor-mover-webapp/assets/styling/main.css
Normal file
15
crates/cursor-mover-webapp/assets/styling/main.css
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
html,
|
||||
body,
|
||||
#main {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100dvh;
|
||||
width: 100dvw;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#main {
|
||||
background-color: #214;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
.mouse-area {
|
||||
background: radial-gradient(#0004 15%, transparent 20%), white;
|
||||
background-size: 15px 15px;
|
||||
|
||||
touch-action: none;
|
||||
flex-grow: 1;
|
||||
}
|
||||
16
crates/cursor-mover-webapp/assets/styling/navbar.module.css
Normal file
16
crates/cursor-mover-webapp/assets/styling/navbar.module.css
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue