A Startpage inspired by TB-96's Evening Startpage and Tobias-Schoch's startpage-wave.
https://start.yandols.xyz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
801 B
48 lines
801 B
4 years ago
|
/*
|
||
|
* Searchbar Element
|
||
|
* Stylesheet taken from Tobias' Wave Startpage concept
|
||
|
* Modified by YandolsZX
|
||
|
* Original source can be found here: https://github.com/Tobias-Schoch/startpage-wave
|
||
|
*/
|
||
|
|
||
|
form .search-field, form .search-submit {
|
||
|
background: none;
|
||
|
outline: none;
|
||
|
border: none;
|
||
|
line-height: 40px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
form .search-field {
|
||
|
width: 93%;
|
||
|
padding-left: 15px;
|
||
|
color: white;
|
||
|
font-size: 30px;
|
||
|
bottom: -1px;
|
||
|
}
|
||
|
|
||
|
form .search-field::placeholder {
|
||
|
opacity: 0.65;
|
||
|
}
|
||
|
|
||
|
form .search-submit {
|
||
|
width: 6%;
|
||
|
top: -0.5em;
|
||
|
}
|
||
|
|
||
|
form .search-submit:hover {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
form .search-submit::before {
|
||
|
background-image:url(./google1.svg);
|
||
|
background-position:center center;
|
||
|
fill: white;
|
||
|
content:"";
|
||
|
width:23px;
|
||
|
height:23px;
|
||
|
position:absolute;
|
||
|
right:23px;
|
||
|
bottom: -3px;
|
||
|
}
|