lotus/lotuspond/front/src/App.css

208 lines
2.7 KiB
CSS
Raw Normal View History

2019-09-19 00:50:23 +00:00
.Index {
width: 100vw;
height: 100vh;
background: #1a1a1a;
color: #f0f0f0;
font-family: monospace;
display: grid;
grid-template-columns: auto 40vw auto;
grid-template-rows: auto auto auto 3em;
grid-template-areas:
". . ."
". main ."
". . ."
"footer footer footer";
}
.Index-footer {
background: #2a2a2a;
grid-area: footer;
}
.Index-footer > div {
padding-left: 0.7em;
padding-top: 0.7em;
}
.Index-nodes {
grid-area: main;
background: #2a2a2a;
}
.Index-node {
margin: 5px;
padding: 15px;
background: #1f1f1f;
}
.Index-addwrap {
margin-top: 5px;
}
/* SingleNode */
.SingleNode-connecting {
width: 100vw;
height: 100vh;
background: #1a1a1a;
color: #ffffff;
font-family: monospace;
display: grid;
grid-template-columns: auto min-content auto;
grid-template-rows: auto min-content auto;
grid-template-areas:
". . ."
". main ."
". . ."
}
.SingleNode-connecting > div {
grid-area: main;
padding: 15px;
white-space: nowrap;
background: #2a2a2a;
}
/*****/
a:link {
color: #50f020;
}
a:visited {
color: #50f020;
}
a:hover {
2019-09-19 14:27:01 +00:00
color: #30a00a;
2019-09-19 00:50:23 +00:00
}
.Button {
display: inline-block;
padding: 15px;
background: #1f1f1f;
margin-left: 5px;
}
.Window {
background: #2a2a2a !important;
2019-09-19 14:27:01 +00:00
color: #e0e0e0;
}
.Window b {
2019-09-19 00:50:23 +00:00
color: #f0f0f0;
}
.Window > :first-child > :nth-child(2)::before {
background: #f0f0f0;
}
.Window > :first-child > :nth-child(2)::after {
background: #f0f0f0;
}
2019-09-19 14:27:01 +00:00
.Window a:link {
color: #30a015;
}
.Window a:visited {
color: #30a015;
}
2019-09-19 00:50:23 +00:00
/* POND */
2019-07-24 17:10:44 +00:00
.App {
min-height: 100vh;
2019-09-19 00:50:23 +00:00
background: #1a1a1a;
2019-07-24 17:10:44 +00:00
font-family: monospace;
}
2019-07-30 23:53:24 +00:00
.NodeList {
user-select: text;
font-family: monospace;
min-width: 40em;
display: inline-block;
}
2019-07-24 17:10:44 +00:00
.FullNode {
2019-07-24 18:42:02 +00:00
user-select: text;
2019-07-24 22:14:09 +00:00
font-family: monospace;
2019-08-15 15:46:34 +00:00
min-width: 50em;
display: inline-block;
2019-07-25 14:57:30 +00:00
}
2019-08-15 15:46:34 +00:00
.FullNode-voucher {
padding-left: 1em;
}
2019-07-31 18:20:05 +00:00
.StorageNode {
user-select: text;
font-family: monospace;
min-width: 40em;
display: inline-block;
}
.Block {
user-select: text;
font-family: monospace;
2019-08-16 17:37:04 +00:00
min-width: 50em;
display: inline-block;
}
2019-08-10 02:22:49 +00:00
.State {
user-select: text;
font-family: monospace;
min-width: 40em;
display: inline-block;
}
2019-09-10 14:48:54 +00:00
.Client {
user-select: text;
font-family: monospace;
display: inline-block;
}
2019-07-25 14:57:30 +00:00
.CristalScroll {
2019-07-30 23:18:21 +00:00
display: flex;
min-width: 100%;
2019-07-30 23:18:21 +00:00
min-height: 100%;
2019-07-25 14:57:30 +00:00
overflow: auto;
2019-07-25 16:13:46 +00:00
}
.Consensus {
font-family: monospace;
2019-08-16 02:34:11 +00:00
}
.ChainExplorer {
font-family: monospace;
2019-09-19 14:27:01 +00:00
color: #d0d0d0;
2019-08-16 02:34:11 +00:00
}
.ChainExplorer-at {
2019-08-19 14:47:09 +00:00
min-width: 40em;
2019-09-19 14:27:01 +00:00
background: #222222;
2019-08-16 02:34:11 +00:00
}
.ChainExplorer-after {
2019-09-19 14:27:01 +00:00
background: #440000
2019-08-16 02:34:11 +00:00
}
.ChainExplorer-before {
2019-09-19 14:27:01 +00:00
background: #444400
2019-08-16 02:34:11 +00:00
}
2019-08-19 21:30:46 +00:00
.Logs {
width: 100%;
height: 100%;
}
.Logs-window :nth-child(2) {
height: 100%;
}