add theme nord_search_dark, themes folder

This commit is contained in:
Alexandar Mechev 2020-10-05 15:38:23 +02:00
parent b01b6d8c69
commit 6a9e53b121
No known key found for this signature in database
GPG Key ID: 1B754EA636091772
2 changed files with 77 additions and 0 deletions

View File

@ -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;
}

View File

@ -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;
}