diff --git a/app/static/css/themes/nord-dark.css b/app/static/css/themes/nord-dark.css new file mode 100644 index 0000000..6eee324 --- /dev/null +++ b/app/static/css/themes/nord-dark.css @@ -0,0 +1,42 @@ +html { + background-color: #292E39 !important; +} + +body { + background-color: #292E39 !important; +} + +div { + /*background-color: #111 !important;*/ + color: #ECEFF4 !important; +} + +a:visited h3 div { + color: #ECEFF4 !important; +} + +a:link h3 div { + color: #88C0D0 !important; +} + +a:link div { + color: #8FBCBB !important; +} + +div span { + color: #81A1C1 !important; +} + +input { + background-color: #292E39 !important; + color: #ECEFF4 !important; +} + +#search-bar { + color: #ECEFF4 !important; + background-color: #292E39 !important; +} + +.search-container { + background-color: #292E39 !important; +} diff --git a/app/static/css/themes/nord-search-dark.css b/app/static/css/themes/nord-search-dark.css new file mode 100644 index 0000000..2ac5b47 --- /dev/null +++ b/app/static/css/themes/nord-search-dark.css @@ -0,0 +1,35 @@ +.autocomplete { + position: relative; + display: inline-block; + width: 100%; +} + +.autocomplete-items { + position: absolute; + border: 1px solid #685e79; + border-bottom: none; + border-top: none; + z-index: 99; + + /*position the autocomplete items to be the same width as the container:*/ + top: 100%; + left: 0; + right: 0; +} + +.autocomplete-items div { + padding: 10px; + cursor: pointer; + color: #fff; + background-color: #000; + border-bottom: 1px solid #242424; +} + +.autocomplete-items div:hover { + background-color: #404040; +} + +.autocomplete-active { + background-color: #685e79 !important; + color: #ffffff; +} \ No newline at end of file