Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhance search bar ui add generative ai add dark background #3871

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
62 changes: 56 additions & 6 deletions css/activities.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,26 +51,75 @@
}

#search[type="text"] {
width: 400px;
width: 85px;
box-sizing: border-box;
position: absolute;
background-color: white;
background-repeat: no-repeat;
padding: 4.5px 10px 4.5px 20px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
font-size: 24px;
padding: 4.5px 10px 4.5px 10px;
/*-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;*/
font-size: 25px;
color: black;
}

#search:focus {
border: 2px solid #87cefa;
border: 1.5px solid #57aff8;
}

#search.open {
margin-top: 60px;
}

#ai-container {
margin-top: 20px;
text-align: center;
position: absolute;
background-color: #000000;
color: #000000;
}

#ai-input-container input {
width: 60%;
padding: 8px;
margin-right: 10px;
position: absolute;
top: 490px;
right: 1000px;
width: 300px;
height: 50px;
background-color: #eecaca;
color: #000000;
}

#ai-input-container button {
padding: 8px 16px;
cursor: pointer;
background-color: #47f876;
color: #000000;
border: none;
border-radius: 4px;
position: absolute;
top: 550px;
right: 850px;
width: 68px;
height: 56px;
}

#ai-response-container p {
margin-top: 20px;
padding: 10px;
position:absolute;
top: 550px;
right: 1010px;
width: 300px;
height: 50px;
background-color: #bbf5fe;
color: #000000;
border: 1px solid #000000;
}


.ui-menu {
position: relative;
background-color: rgba(255, 255, 255, 1);
Expand Down Expand Up @@ -401,6 +450,7 @@ img.icon:hover {

#loading-image-container {
z-index: 99999;
background-color: #000000
}

body {
Expand Down
Loading