| #mainContainer { |
| display: flex; |
| justify-content: center; |
| max-width:500px; |
| margin: 0 auto; |
| padding: 20px; |
| } |
|
|
| #searchBox { |
| width: 150px; |
| transition: width 0.3s; |
| } |
|
|
| #searchBox input { |
| width: 100%; |
| } |
|
|
| #searchBox:focus-within { |
| width: 200px; |
| } |
|
|
| #searchButton { |
| padding: 0; |
| margin-left: -25px; |
| background-color: transparent; |
| border: none; |
| } |
|
|
| #resultsContainer { |
| box-shadow: 0 2px 4px rgba(0,0,0,0.2); |
| z-index: 1000; |
| border-radius: 5px; |
| overflow: hidden; |
| background-color: #fff; |
| } |
|
|
| .ui.list.bordered { |
| border: 1px solid rgba(34,36,38,.15); |
| box-shadow: 0 1px 2px 0 rgba(34,36,38,.15); |
| } |
|
|
| .ui.list{ |
| margin: 0;; |
| } |
|
|
| #resultsContainer .item { |
| width: 100%; |
| box-sizing: border-box; |
| padding: 10px 15px; |
| margin-top: 5px; |
| margin-bottom: 5px; |
| border: none; |
| transition: background-color 0.3s; |
| } |
|
|
| #resultsContainer .item:hover { |
| background-color: #e2e2e2; |
| } |
|
|
| #suggestionContainer { |
| display: none; |
| } |
|
|
| #resultsList { |
| padding: 10px; |
| background-color: #0f0f0f; |
| border-bottom: 1pxrgb(42, 36, 36)#ddd; |
| } |
|
|
| #answerContainer { |
| padding: 10px; |
| background-color: #f7f7f7; |
| border-radius: 5px; |
| box-shadow: 0 2px 4px rgba(0,0,0,0.1); |
| font-family: Arial, sans-serif; |
| color: #333; |
| font-size: 16px; |
| line-height: 1.6; |
| display: none; |
| } |
|
|
| #feedbackContainer { |
| margin-top: 10px; |
| align-items: center; |
| border-top: gray solid 1px; |
| padding: 5px; |
| min-height: 30px; |
| } |
|
|
| #likeButton, #dislikeButton { |
| cursor: pointer; |
| margin-right: 10px; |
| float: left; |
| } |
|
|
| #copyButton { |
| cursor: pointer; |
| float: right; |
| } |
|
|
| #likeButton:hover, #dislikeButton:hover, #copyButton:hover { |
| color: #007bff; |
| } |
|
|