Template:Search/style.css: Difference between revisions
(Created page with ".search-box-main-page{ background-color: red; }") |
No edit summary |
||
(20 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
.search-box-main-page{ | .search-box-main-page{ | ||
background-color: | 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; | |||
} | } |
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;
}