mirror of
https://github.com/mue/mue.git
synced 2026-07-11 18:31:47 +02:00
74 lines
1.3 KiB
SCSS
74 lines
1.3 KiB
SCSS
@import '../../../scss/variables';
|
|
|
|
.searchBar {
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 20px;
|
|
color: map-get($theme-colours, 'main-text-color');
|
|
|
|
input[type=text] {
|
|
width: 140px;
|
|
margin-left: 40px;
|
|
border-radius: 24px;
|
|
font-size: calc(5px + 1.2vmin);
|
|
border: none;
|
|
position: absolute;
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
-webkit-transition: width 0.5s ease-in-out;
|
|
transition: width 0.5s ease-in-out;
|
|
color: black;
|
|
padding: 0.5rem 1rem;
|
|
user-select: none;
|
|
|
|
&:focus {
|
|
width: 400px;
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
user-select: text;
|
|
}
|
|
|
|
&::-webkit-input-placeholder {
|
|
color: black;
|
|
}
|
|
|
|
&::-moz-placeholder {
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
.MuiSvgIcon-root {
|
|
position: absolute;
|
|
margin-top: 6px;
|
|
font-size: 30px;
|
|
filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
|
|
cursor: pointer;
|
|
transition: all 0.5s ease 0s;
|
|
|
|
&:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
}
|
|
|
|
.micIcon {
|
|
margin-right: 10px;
|
|
position: relative !important;
|
|
}
|
|
|
|
.dark .searchBar {
|
|
input[type=text] {
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
color: white;
|
|
|
|
&:focus {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
&::-webkit-input-placeholder {
|
|
color: white;
|
|
}
|
|
|
|
&::-moz-placeholder {
|
|
color: white;
|
|
}
|
|
}
|
|
} |