summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-04-06 18:38:42 +0200
committerGitHub <noreply@github.com>2024-04-06 18:38:42 +0200
commit992eb407eb4c420ab27435b4a75caef9971fcf8f (patch)
treeebe0074ae6294cec0aa5e0ea5dd14db1bcc0579d
parentUpdate index.html (diff)
downloadgpt4free-992eb407eb4c420ab27435b4a75caef9971fcf8f.tar
gpt4free-992eb407eb4c420ab27435b4a75caef9971fcf8f.tar.gz
gpt4free-992eb407eb4c420ab27435b4a75caef9971fcf8f.tar.bz2
gpt4free-992eb407eb4c420ab27435b4a75caef9971fcf8f.tar.lz
gpt4free-992eb407eb4c420ab27435b4a75caef9971fcf8f.tar.xz
gpt4free-992eb407eb4c420ab27435b4a75caef9971fcf8f.tar.zst
gpt4free-992eb407eb4c420ab27435b4a75caef9971fcf8f.zip
-rw-r--r--g4f/gui/client/static/css/style.css18
1 files changed, 13 insertions, 5 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css
index 7b805971..25fc4911 100644
--- a/g4f/gui/client/static/css/style.css
+++ b/g4f/gui/client/static/css/style.css
@@ -512,13 +512,15 @@ label[for="camera"] {
}
}
-.buttons input[type="checkbox"] {
+.buttons input[type="checkbox"],
+.settings input[type="checkbox"] {
height: 0;
width: 0;
display: none;
}
-.buttons label {
+.buttons label,
+.settings label {
cursor: pointer;
text-indent: -9999px;
width: 50px;
@@ -535,7 +537,8 @@ label[for="camera"] {
transition: 0.33s;
}
-.buttons label:after {
+.buttons label:after,
+.settings label:after {
content: "";
position: absolute;
top: 50%;
@@ -548,7 +551,8 @@ label[for="camera"] {
transition: 0.33s;
}
-.buttons input:checked+label {
+.buttons input:checked+label,
+.settings input:checked+label {
background: var(--accent);
}
@@ -556,13 +560,17 @@ label[for="camera"] {
left: calc(100% - 5px - 20px);
}
-.buttons {
+.buttons, .settings {
display: flex;
align-items: center;
justify-content: left;
width: 100%;
}
+.settings textarea{
+ height: 20px;
+}
+
.field {
height: fit-content;
display: flex;