97 lines
1.4 KiB
CSS
97 lines
1.4 KiB
CSS
body {
|
|
font-family: "Trebuchet MS", "Verdana", sans-serif;
|
|
min-width: 260px;
|
|
margin: 0;
|
|
padding: 12px;
|
|
background: linear-gradient(180deg, #f7f3e8, #efe6d2);
|
|
color: #2b2014;
|
|
}
|
|
|
|
h3 {
|
|
margin: 0 0 10px;
|
|
letter-spacing: 0.4px;
|
|
text-transform: uppercase;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.subtext {
|
|
margin: 0 0 10px;
|
|
font-size: 11px;
|
|
line-height: 1.3;
|
|
color: #5b4a33;
|
|
}
|
|
|
|
.subtext.subtext-debug {
|
|
margin: 6px 0 8px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
gap: 6px;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.row.settings {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
input {
|
|
flex: 1;
|
|
padding: 6px 8px;
|
|
border: 1px solid #cdbf9e;
|
|
border-radius: 6px;
|
|
background: #fffaf0;
|
|
font-size: 12px;
|
|
}
|
|
|
|
button {
|
|
padding: 6px 10px;
|
|
border: 1px solid #b2985b;
|
|
border-radius: 6px;
|
|
background: #d9c18c;
|
|
color: #2b2014;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button.ghost {
|
|
background: transparent;
|
|
border-color: #cdbf9e;
|
|
}
|
|
|
|
button:hover {
|
|
filter: brightness(0.95);
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 4px 0;
|
|
padding: 6px 8px;
|
|
background: #fffaf0;
|
|
border: 1px solid #e2d7be;
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
li button {
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
border-color: #c95a3a;
|
|
background: #f2a285;
|
|
}
|
|
|
|
.toggle {
|
|
display: flex;
|
|
gap: 6px;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
}
|