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.
WF-Website/public/styles/styleSearch.css

69 lines
1.4 KiB

@import url(./style.css);
@import url(./styleQuoteLittle.css);
/* ====== DEFAULT ====== */
.search-container {
margin-left: 5%;
width: 90%;
height: 60px;
border-radius: 40px;
}
.search-container .searchButton {
float: right;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.searchButton img{
width: 70%;
height: 70%;
}
.search-container input[type="search"] {
margin: 10px ;
border:none;
background: none;
float:left;
padding: 0;
color: #00f;
font-size: 16px;
line-height: 40px;
width:auto;
}
.filtre{
display: flex;
justify-content: space-around;
font-size: 30px;
}
/* ====== DARK MODE ====== */
/*body.dark-mode */
body.dark-mode .search-container {
background: #fff;
}
body.dark-mode .search-container input[type="search"] {
color: #000;
}
body.dark-mode .search-container .searchButton {
background: linear-gradient(to right, #4a148c, #7b1fa2);
}
/* ====== LIGHT MODE ====== */
/*body.light-mode*/
body.light-mode .search-container {
background: #ccc;
}
body.light-mode .search-container input[type="search"] {
color: #000;
}
body.light-mode .search-container .searchButton {
background: linear-gradient(180deg, rgba(187,211,249,1) 0%, rgba(199,246,196,1) 100%);
}