SuperScriptMaterializer/SuperScriptViewer/static/viewer.css

110 lines
1.6 KiB
CSS
Raw Normal View History

2020-04-17 23:31:27 +08:00
/*navigation style*/
p.hamburger {
margin: 0 5px 0 5px;
padding: 0;
}
2020-04-17 23:31:27 +08:00
/*graph style*/
2020-04-12 16:02:20 +08:00
div.block-target {
position: absolute;
background: green;
}
div.block-b {
position: absolute;
background: yellow;
}
div.block-p {
position: absolute;
background: blue;
}
p.block-text {
position: absolute;
margin: 0;
padding: 0;
font-size: 12px;
color: black;
}
p.block-expandable-text {
position: absolute;
margin: 0;
padding: 0;
font-size: 12px;
color: #5f5f5f;
}
p.block-asstext {
position: absolute;
margin: 0;
padding: 0;
font-size: 9px;
2020-04-12 16:02:20 +08:00
color: white;
}
div.block-body {
position: absolute;
background: #8f8f8f;
border: 1px solid #cfcfcf;
2020-04-12 15:19:13 +08:00
}
div.cell-ptarget {
position: absolute;
2020-04-12 16:02:20 +08:00
background: green;
2020-04-12 15:19:13 +08:00
border: 1px solid #cfcfcf;
}
div.cell-plocal {
position: absolute;
background: #8f8f8f;
border: 1px solid #cfcfcf;
}
div.cell-shortcut {
position: absolute;
2020-04-12 16:02:20 +08:00
background: purple;
2020-04-12 15:19:13 +08:00
border: 1px solid #cfcfcf;
}
div.cell-pio {
position: absolute;
2020-04-12 16:02:20 +08:00
background: blue;
2020-04-12 15:19:13 +08:00
border: 1px solid #cfcfcf;
}
div.cell-bio {
position: absolute;
2020-04-12 16:02:20 +08:00
background: yellow;
2020-04-12 15:19:13 +08:00
border: 1px solid #cfcfcf;
2020-04-12 22:38:10 +08:00
}
text.link-delay {
font-size: 12px;
color: black;
2020-04-17 23:31:27 +08:00
}
/*side panel style*/
div.tabitem-activated {
background: #0000ff;
}
b.tabitem-activated {
color: white;
}
div.tabitem-deactivated {
background: #ffffff00;
}
b.tabitem-deactivated {
color: black;
}
pre {
border: 1px solid black;
border-radius: 2px;
padding: 5px;
margin: 5px;
background: #3f3f3f;
color: white;
}