100 lines
1.4 KiB
CSS
100 lines
1.4 KiB
CSS
@import url("../global.css");
|
|
|
|
body {
|
|
height: 356px; /* Height of popup */
|
|
}
|
|
|
|
input {
|
|
border: 0;
|
|
border-radius: 30px;
|
|
font-size: var(--large-text);
|
|
padding: 2px 8px 2px 8px;
|
|
gap: 8px;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
background-color: rgb(233, 233, 237);
|
|
}
|
|
|
|
select {
|
|
border: 0;
|
|
border-radius: 30px;
|
|
font-size: var(--large-text);
|
|
padding: 2px 2px 2px 8px;
|
|
gap: 8px;
|
|
}
|
|
|
|
label {
|
|
font-size: var(--large-text);
|
|
}
|
|
|
|
.primary-prompt {
|
|
display: flex;
|
|
align-items: center;
|
|
text-wrap: nowrap;
|
|
gap: 6px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.primary-promt input {
|
|
font-size: 50px;
|
|
}
|
|
|
|
#other {
|
|
display: none; /* Modified by options.js */
|
|
gap: 6px;
|
|
margin-top: 12px;
|
|
margin-left: 18px;
|
|
}
|
|
|
|
#other li {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2fr;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
#other > li > label {
|
|
font-size: var(--small-text);
|
|
text-align: right;
|
|
text-wrap: nowrap;
|
|
}
|
|
|
|
#other > li > input {
|
|
font-size: var(--small-text);
|
|
}
|
|
|
|
#other > li > select {
|
|
font-size: var(--small-text);
|
|
width: min-content;
|
|
}
|
|
|
|
#also > li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.lhs {
|
|
text-align: right;
|
|
}
|
|
|
|
#also > li > button {
|
|
background-color: transparent;
|
|
width: fit-content;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.hide-button > button {
|
|
visibility: hidden;
|
|
}
|
|
|
|
#button-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 8px;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|