1a789d3acb
* cfg edit 1 * jsonschema deps * 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 * part 2 of last * message * merge addtl * fixing guided setup for myself * warn-on-no-post * EditorLoads * cleanups and styles * create info * fix tests * make gen * sector early bird * sectors v2 * sector termination v1 * terminate2 * mjs * minor things * flag bad sectors * fix errors * add dealweight and deals * change column width * ui looking better * cleanups * fix pipeline page * comments * curioweb: Add missing sector info file * curioweb: fix hapi root template --------- Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com> Co-authored-by: LexLuthr <lexluthr@protocol.ai> Co-authored-by: LexLuthr <lexluthr@curiostorage.org> Co-authored-by: Łukasz Magiera <magik6k@gmail.com>
54 lines
742 B
CSS
54 lines
742 B
CSS
@import url('https://fonts.cdnfonts.com/css/metropolis-2');
|
|
|
|
html {
|
|
min-height: 100vh;
|
|
background: rgb(11, 22, 34);
|
|
padding: 0;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 3px 4px;
|
|
background: rgb(11, 22, 34);
|
|
}
|
|
curio-ux {
|
|
/* To resemble Clarity Design */
|
|
color: rgb(227, 234, 237);
|
|
font-family: Metropolis, monospace;
|
|
font-weight: 400;
|
|
background: rgb(11, 22, 34);
|
|
}
|
|
|
|
|
|
.app-head {
|
|
width: 100%;
|
|
}
|
|
.head-left {
|
|
display: inline-block;
|
|
}
|
|
.head-right {
|
|
display: inline-block;
|
|
float: right;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
color: #adf7ad;
|
|
}
|
|
|
|
a:hover {
|
|
color: #88cc60;
|
|
}
|
|
|
|
.success {
|
|
color: greenyellow;
|
|
}
|
|
.warning {
|
|
color: yellow;
|
|
}
|
|
.error {
|
|
color: red;
|
|
}
|