Files
vk-mute/src/popup/popup.css
2023-12-10 14:04:02 +03:00

123 lines
1.7 KiB
CSS

* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
min-width: 160px;
margin: 0;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.header {
background-color: #2196F3;
color: white;
width: 100%;
height: 3rem;
position: relative;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}
h3 {
margin: 0;
}
.idToHide {
padding: 10px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
background-color: #fff;
}
.idToHide:hover {
background-color: #f1f1f1;
}
#id_list {
color: black;
position: relative;
width: 100%;
margin-top: 1rem;
}
.del_item {
cursor: pointer;
transition: transform 0.2s;
}
.del_item:hover {
transform: scale(1.15);
}
.donation_btn {
text-align: right;
margin-top: .5rem;
padding: 0 10px 10px 0;
}
a {
text-decoration: none;
color: hsl(207, 90%, 35%);
}