d7d849cf20
* feat: curioweb: Sector info page * Address review
121 lines
1.8 KiB
CSS
121 lines
1.8 KiB
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 {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
color: #adf7ad;
|
|
}
|
|
|
|
a:hover {
|
|
color: #88cc60;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
/* Path: curiosrc/web/hapi/web/pipeline_porep_sectors.gohtml */
|
|
.porep-pipeline-table, .porep-state {
|
|
color: #d0d0d0;
|
|
}
|
|
|
|
.porep-pipeline-table td, .porep-pipeline-table th {
|
|
border-left: none;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.porep-pipeline-table tr:nth-child(odd) {
|
|
border-top: 6px solid #999999;
|
|
|
|
}
|
|
|
|
.porep-pipeline-table tr:first-child, .porep-pipeline-table tr:first-child {
|
|
border-top: none;
|
|
}
|
|
|
|
.porep-state {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.porep-state td, .porep-state th {
|
|
border-left: 1px solid #f0f0f0;
|
|
border-right: 1px solid #f0f0f0;
|
|
|
|
padding: 1px 5px;
|
|
|
|
text-align: center;
|
|
font-size: 0.7em;
|
|
}
|
|
|
|
.porep-state tr {
|
|
border-top: 1px solid #f0f0f0;
|
|
}
|
|
.porep-state tr:first-child {
|
|
border-top: none;
|
|
}
|
|
|
|
.pipeline-active {
|
|
background-color: #303060;
|
|
}
|
|
.pipeline-success {
|
|
background-color: #306030;
|
|
}
|
|
.pipeline-failed {
|
|
background-color: #603030;
|
|
}
|