103 lines
1.4 KiB
CSS
103 lines
1.4 KiB
CSS
/* * {
|
|
background: red;
|
|
} */
|
|
|
|
window {
|
|
background-color: #181825;
|
|
color: #ffffff;
|
|
}
|
|
|
|
box {
|
|
background: #181825;
|
|
}
|
|
|
|
.project-name {
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.project-path {
|
|
font-size: 12px;
|
|
color: #888888;
|
|
}
|
|
|
|
.circular {
|
|
padding: 5px;
|
|
border-radius: 50%;
|
|
background: alpha(currentColor, 0.1);
|
|
}
|
|
|
|
.circular:hover {
|
|
background: alpha(currentColor, 0.2);
|
|
}
|
|
|
|
listboxrow {
|
|
padding: 8px;
|
|
border-radius: 6px;
|
|
margin: 2px 0;
|
|
background: #2d2d2d;
|
|
}
|
|
|
|
listboxrow:hover {
|
|
background: #3d3d3d;
|
|
}
|
|
|
|
/* listboxrow box {
|
|
background: transparent;
|
|
} */
|
|
|
|
entry {
|
|
background: #2d2d2d;
|
|
border: 1px solid #3d3d3d;
|
|
border-radius: 6px;
|
|
color: #ffffff;
|
|
padding: 8px;
|
|
margin: 0;
|
|
}
|
|
|
|
button {
|
|
background: #2d2d2d;
|
|
border: none;
|
|
border-radius: 6px;
|
|
color: #ffffff;
|
|
padding: 8px 16px;
|
|
margin: 0;
|
|
}
|
|
|
|
button:hover {
|
|
background: #3d3d3d;
|
|
}
|
|
|
|
button.suggested-action {
|
|
background: #2864b4;
|
|
color: #ffffff;
|
|
}
|
|
|
|
button.suggested-action:hover {
|
|
background: #3275c5;
|
|
}
|
|
|
|
button.destructive-action {
|
|
background: #c01c28;
|
|
color: #ffffff;
|
|
}
|
|
|
|
button.destructive-action:hover {
|
|
background: #d1293a;
|
|
}
|
|
|
|
.list-box {
|
|
background-color: #181825;
|
|
}
|
|
|
|
.list-box row {
|
|
background-color: #181825;
|
|
border-radius: 6px;
|
|
margin: 8px;
|
|
padding: 8px 4px;
|
|
}
|
|
|
|
.list-box row:selected {
|
|
outline: #2864b4 solid 2px;
|
|
} |