81ba6ab6f0
* feat: lp mig - first few steps * lp mig: default tasks * code comments * docs * lp-mig-progress * shared * comments and todos * fix: curio: rename lotus-provider to curio (#11645) * rename provider to curio * install gotext * fix lint errors, mod tidy * fix typo * fix API_INFO and add gotext to circleCI * add back gotext * add gotext after remerge * lp: channels doc * finish easy-migration TODOs * out generate * merging and more renames * avoid make-all * minor doc stuff * cu: make gen * make gen fix * make gen * tryfix * go mod tidy * minor ez migration fixes * ez setup - ui cleanups * better error message * guided setup colors * better path to saveconfigtolayer * loadconfigwithupgrades fix * readMiner oops * guided - homedir * err if miner is running * prompt error should exit * process already running, miner_id sectors in migration * dont prompt for language a second time * check miner stopped * unlock repo * render and sql oops * curio easyMig - some fixes * easyMigration runs successfully * lint * review fixes * fix backup path * fixes1 * fixes2 * fixes 3 --------- Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com> Co-authored-by: LexLuthr <lexluthr@protocol.ai>
71 lines
881 B
CSS
71 lines
881 B
CSS
html, body {
|
|
background: #0f0f0f;
|
|
color: #ffffff;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
font-family: 'Hack', monospace;
|
|
}
|
|
|
|
table td, table th {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.app-head {
|
|
width: 100%;
|
|
}
|
|
.head-left {
|
|
display: inline-block;
|
|
}
|
|
.head-right {
|
|
display: inline-block;
|
|
float: right;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table td, table th {
|
|
border-left: 1px solid #f0f0f0;
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
table tr td:first-child, table tr th:first-child {
|
|
border-left: none;
|
|
}
|
|
|
|
a:link {
|
|
color: #cfc;
|
|
}
|
|
|
|
a:visited {
|
|
color: #dfa;
|
|
}
|
|
|
|
a:hover {
|
|
color: #af7;
|
|
}
|
|
|
|
.success {
|
|
color: greenyellow;
|
|
}
|
|
.warning {
|
|
color: yellow;
|
|
}
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
.dash-tile {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.75rem;
|
|
background: #3f3f3f;
|
|
|
|
& b {
|
|
padding-bottom: 0.5rem;
|
|
color: deeppink;
|
|
}
|
|
}
|