Template:Search/style.css: Difference between revisions
No edit summary |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
display: grid; | display: grid; | ||
place-items: center; | place-items: center; | ||
width: 90%; | |||
} | |||
.search-box-main-page .bodySearchWrap{ | |||
display:flex; | |||
flex-wrap: nowrap; | |||
} | } | ||
.search-box-main-page .mw-ui-button{ | .search-box-main-page .mw-ui-button{ | ||
Line 7: | Line 13: | ||
border-radius: 0 999px 999px 0; | border-radius: 0 999px 999px 0; | ||
border: none; | border: none; | ||
background: # | background: #3DC4C9; | ||
} | } | ||
Line 13: | Line 19: | ||
box-sizing: border-box; | box-sizing: border-box; | ||
border-radius: 999px 0 0 999px; | border-radius: 999px 0 0 999px; | ||
border: | border-color: #3DC4C9; | ||
} | |||
.search-box-main-page .mw-searchInput:hover{ | |||
border-color: #2FB1A5; | |||
} | |||
.search-box-main-page .mw-ui-button:hover{ | |||
background: #2FB1A5; | |||
} | } | ||
Latest revision as of 17:04, 17 June 2024
.search-box-main-page{
display: grid;
place-items: center;
width: 90%;
}
.search-box-main-page .bodySearchWrap{
display:flex;
flex-wrap: nowrap;
}
.search-box-main-page .mw-ui-button{
margin-left: -0.3em;
border-radius: 0 999px 999px 0;
border: none;
background: #3DC4C9;
}
.search-box-main-page *{
box-sizing: border-box;
border-radius: 999px 0 0 999px;
border-color: #3DC4C9;
}
.search-box-main-page .mw-searchInput:hover{
border-color: #2FB1A5;
}
.search-box-main-page .mw-ui-button:hover{
background: #2FB1A5;
}
.search-box-main-page input:focus{
outline: none;
}