This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1.search-bar-container { 2 width: 100%; 3 max-width: 600px; 4 margin: 0 auto; 5} 6 7.search-bar { 8 background: var(--navbar-bg); 9 border: 0px; 10 border-radius: 12px; 11 box-shadow: none; 12 gap: 15px; 13 justify-content: center; 14 margin: 10px auto; 15 padding: 0px; 16 display: flex; 17 flex-direction: column; 18 transition: background-color 0.3s ease, border-color 0.3s ease; 19} 20 21.search-bar input { 22 border: 2px solid var(--button-bg); 23 border-radius: 6px; 24 padding: 9px; 25 text-align: center; 26 margin: auto; 27 align-content: center; 28 justify-content: center; 29 font-size: 1.1em; 30 background-color: var(--navbar-bg); 31 color: var(--navbar-text); 32 transition: all 0.3s ease; 33} 34 35.search-bar input:hover, 36.search-bar input:focus { 37 border-color: var(--button-bg); 38 background: var(--background); 39} 40 41.search-bar input.dark-mode { 42 background-color: #2d2d2d; 43 color: #ffffff; 44 border-color: #555; 45} 46 47.search-bar input.dark-mode:hover, 48.search-bar input.dark-mode:focus { 49 background-color: #3d3d3d; 50 border-color: #666; 51} 52 53.search-bar button { 54 background: var(--button-bg); 55 border: none; 56 border-radius: 6px; 57 color: var(--button-text); 58 cursor: pointer; 59 margin: auto; 60 max-width: 150px; 61 padding: 10px 15px; 62 font-weight: 700; 63 font-size: 1em; 64 transition: background-color 0.3s ease; 65} 66 67.search-bar button:hover { 68 background: #004F84; 69} 70 71.autocomplete-items { 72 background-color: var(--navbar-bg); 73 border: 2px solid var(--button-bg); 74 border-radius: 6px; 75 left: 0; 76 right: 0; 77 top: 116%; 78 z-index: 99; 79 position: absolute; 80 gap: 3px; 81 display: flex; 82 flex-direction: column; 83 padding: 10px; 84 text-align: left; 85 transition: all 0.3s ease; 86} 87 88.autocomplete-items.dark-mode { 89 background-color: #2d2d2d; 90 border-color: #555; 91 color: #ffffff; 92} 93 94.autocomplete-item { 95 display: flex; 96 overflow: clip; 97 padding: 6px; 98 color: var(--navbar-text); 99 transition: all 0.3s ease; 100} 101 102.autocomplete-item:hover { 103 background-color: var(--background); 104 border-radius: 6px; 105 border: 2px solid var(--button-bg); 106} 107 108.autocomplete-item.dark-mode { 109 color: #ffffff; 110} 111 112.autocomplete-item.dark-mode:hover { 113 background-color: #3d3d3d; 114 border-color: #666; 115} 116 117.autocomplete-item img { 118 width: 20px; 119 height: 20px; 120 border-radius: 50%; 121 margin-right: 7px; 122 object-fit: cover; 123} 124 125.autocomplete-item.active { 126 background-color: var(--button-bg); 127 color: var(--button-text); 128} 129 130.autocomplete-item.active.dark-mode { 131 background-color: #555; 132 color: #ffffff; 133} 134 135.loading { 136 color: var(--navbar-text); 137 margin-top: 10px; 138 font-style: italic; 139}