libredirect/src/pages/popup/style.css

70 lines
955 B
CSS
Raw Normal View History

2022-01-29 23:34:33 +01:00
body {
width: 230px;
min-height: auto;
}
html,
body {
margin: 0;
2022-04-18 09:25:50 +02:00
}
.hide {
display: none !important;
2022-05-21 15:38:28 +02:00
}
.button {
display: flex;
margin: 0 auto;
justify-content: space-between;
width: 100%;
2022-05-21 15:38:28 +02:00
}
.space {
height: 10px;
}
input {
height: 23px;
width: 46px;
}
.button h4 {
font-size: 16px;
max-width: 160px;
}
#instance {
max-width: 110px;
max-height: 22px;
overflow-x: scroll;
white-space: nowrap;
scrollbar-width: none;
-ms-overflow-style: none;
}
#instance::-webkit-scrollbar {
display: none;
}
#instance::before {
background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
position: absolute;
width: 5px;
height: 22px;
content: "";
display: block;
pointer-events: none;
}
#end::before {
background-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
position: absolute;
width: 5px;
height: 22px;
content: "";
display: block;
pointer-events: none;
2022-10-09 14:56:04 +02:00
top: 14px;
left: 156px;
}