diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-09 05:54:47 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-09 05:54:47 +0200 |
commit | d4a92bb8df56009a7e5520dca0a3ed8f79e92d06 (patch) | |
tree | 1e044ae1edfcc1f737b40ae1ecf59d25e371fd3d /g4f/gui/client/static/css/style.css | |
parent | Add DuckDuckGo Provider, Add SpeechRecognition to gui (diff) | |
download | gpt4free-d4a92bb8df56009a7e5520dca0a3ed8f79e92d06.tar gpt4free-d4a92bb8df56009a7e5520dca0a3ed8f79e92d06.tar.gz gpt4free-d4a92bb8df56009a7e5520dca0a3ed8f79e92d06.tar.bz2 gpt4free-d4a92bb8df56009a7e5520dca0a3ed8f79e92d06.tar.lz gpt4free-d4a92bb8df56009a7e5520dca0a3ed8f79e92d06.tar.xz gpt4free-d4a92bb8df56009a7e5520dca0a3ed8f79e92d06.tar.zst gpt4free-d4a92bb8df56009a7e5520dca0a3ed8f79e92d06.zip |
Diffstat (limited to 'g4f/gui/client/static/css/style.css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index ebfe2f2d..faecda9f 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -315,6 +315,7 @@ body { display: flex; flex-direction: column; gap: 10px; + flex-wrap: wrap; } .message .content, @@ -332,6 +333,10 @@ body { max-width: 400px; } +.message .content .audio{ + display: flex; +} + .message .user i { position: absolute; bottom: -6px; @@ -357,7 +362,8 @@ body { cursor: pointer; } -.message .count .fa-clipboard { +.message .count .fa-clipboard, +.message .count .fa-volume-high { z-index: 1000; cursor: pointer; } @@ -374,6 +380,10 @@ body { color: var(--accent); } +.message .count .fa-volume-high.active { + color: var(--accent); +} + .message .assistant:hover .fa-xmark, .message .user:hover .fa-xmark { display: block; @@ -1136,4 +1146,14 @@ a:-webkit-any-link { .hidden { display: none; +} + +.blink { + animation: blinker 1s step-start infinite; +} + +@keyframes blinker { + 50% { + opacity: 0; + } }
\ No newline at end of file |