Template:Search/style.css: Difference between revisions
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
border-radius: 0 999px 999px 0; | border-radius: 0 999px 999px 0; | ||
border: none; | border: none; | ||
background: # | background: #006278; | ||
} | } | ||
Line 13: | Line 13: | ||
box-sizing: border-box; | box-sizing: border-box; | ||
border-radius: 999px 0 0 999px; | border-radius: 999px 0 0 999px; | ||
border-color: # | border-color: #006278; | ||
} | |||
.search-box-main-page input[type=text]:hover{ | |||
border-color: #2FB1A5; | |||
} | |||
.search-box-main-page input[type=button]:hover{ | |||
background: #2FB1A5; | |||
} | } | ||
Revision as of 14:54, 17 June 2024
.search-box-main-page{
display: grid;
place-items: center;
}
.search-box-main-page .mw-ui-button{
margin-left: -0.3em;
border-radius: 0 999px 999px 0;
border: none;
background: #006278;
}
.search-box-main-page *{
box-sizing: border-box;
border-radius: 999px 0 0 999px;
border-color: #006278;
}
.search-box-main-page input[type=text]:hover{
border-color: #2FB1A5;
}
.search-box-main-page input[type=button]:hover{
background: #2FB1A5;
}
.search-box-main-page input:focus{
outline: none;
}