44 lines
835 B
CSS
44 lines
835 B
CSS
#SearchBox{
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
#SearchResults {
|
|
max-width: 98vw;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#SearchBox select, #SearchBox button, #SearchBox input {
|
|
border-color: var(--primary-color);
|
|
border-style: solid;
|
|
border-width: 0;
|
|
border-bottom-width: 2px;
|
|
border-top-width: 2px;
|
|
padding: 2px 5px;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
#Searchbox-Manganame {
|
|
border-bottom-left-radius: 2px;
|
|
border-top-left-radius: 2px;
|
|
border-left-width: 2px !important;
|
|
min-width: 300px;
|
|
max-width: 50vw;
|
|
}
|
|
|
|
#Searchbox-connector {
|
|
width: max-content;
|
|
}
|
|
|
|
#Searchbox-language {
|
|
width: 90px;
|
|
}
|
|
|
|
#Searchbox-button {
|
|
border-bottom-right-radius: 2px;
|
|
border-top-right-radius: 2px;
|
|
border-right-width: 2px !important;
|
|
width: 90px;
|
|
} |