aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/ui/style
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-01-22 14:10:15 +0100
committermetamuffin <metamuffin@disroot.org>2023-01-22 14:10:15 +0100
commited870d1fc04891e79ab1d40be473a07810a62e69 (patch)
tree9955a00484b3311dfd4ea8121b7b4bb3654c0f86 /server/src/routes/ui/style
parentec76bbe5398f51ffa55bfd315b30c0a07245d4e6 (diff)
downloadjellything-ed870d1fc04891e79ab1d40be473a07810a62e69.tar
jellything-ed870d1fc04891e79ab1d40be473a07810a62e69.tar.bz2
jellything-ed870d1fc04891e79ab1d40be473a07810a62e69.tar.zst
clean again
Diffstat (limited to 'server/src/routes/ui/style')
-rw-r--r--server/src/routes/ui/style/layout.css6
-rw-r--r--server/src/routes/ui/style/player.css7
2 files changed, 10 insertions, 3 deletions
diff --git a/server/src/routes/ui/style/layout.css b/server/src/routes/ui/style/layout.css
index 8f7afb4..0c0e906 100644
--- a/server/src/routes/ui/style/layout.css
+++ b/server/src/routes/ui/style/layout.css
@@ -78,6 +78,11 @@ nav h1 {
margin-right: 1em;
}
+nav .account {
+ float: right;
+ display: inline;
+}
+
#main {
display: block;
margin-top: var(--bar-height);
@@ -90,4 +95,3 @@ nav h1 {
color: rgb(255, 117, 117);
font-family: monospace;
}
-
diff --git a/server/src/routes/ui/style/player.css b/server/src/routes/ui/style/player.css
index 8d3488f..0a9c16f 100644
--- a/server/src/routes/ui/style/player.css
+++ b/server/src/routes/ui/style/player.css
@@ -11,7 +11,8 @@ option {
}
input[type="submit"] {
- width: 30%;
+ padding: 0.5em;
+ margin: 1em;
justify-self: center;
border: 0px solid transparent;
background-color: var(--accent-dark);
@@ -52,7 +53,7 @@ input[type="radio"]:checked {
background-color: var(--accent-light);
}
-input[type=submit]:hover {
+input[type="submit"]:hover {
filter: hue-rotate(-20deg);
}
@@ -82,5 +83,7 @@ fieldset label:hover {
}
.playerconf input[type="submit"] {
grid-area: b;
+ width: 30%;
+ height: 3em;
font-size: 1.5em;
}