You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
619 B
35 lines
619 B
/* Stili per il ComfyUI Launcher */ |
|
|
|
.status-running { |
|
color: #26a269; |
|
} |
|
|
|
.status-stopped { |
|
color: #c01c28; |
|
} |
|
|
|
.log-view { |
|
font-family: "JetBrains Mono", "Fira Code", "Source Code Pro", monospace; |
|
font-size: 10pt; |
|
background-color: #1e1e1e; |
|
color: #d4d4d4; |
|
} |
|
|
|
.environment-frame { |
|
border: 1px solid #3584e4; |
|
border-radius: 6px; |
|
} |
|
|
|
.control-button { |
|
margin: 6px; |
|
padding: 12px 24px; |
|
font-weight: bold; |
|
} |
|
|
|
.install-button { |
|
background: linear-gradient(to bottom, #62a0ea, #3584e4); |
|
} |
|
|
|
.install-button:hover { |
|
background: linear-gradient(to bottom, #74b0fa, #4894f4); |
|
}
|
|
|