AstroJS/botanjs/src/Astro/Build/Components/BuildReport.css

83 lines
1.1 KiB
CSS
Raw Normal View History

2015-08-14 13:06:23 +00:00
.build-report > pre {
padding: 2em;
border-width: 1px;
2015-09-27 19:26:22 +00:00
color: #C2C5C9;
background-color: #0C121B;
2015-08-14 13:06:23 +00:00
}
.build-report > pre.ok {
}
.build-status {
color: #888;
padding-left: 2em;
margin-bottom: 0.5em;
}
.build-status > * .ok { color: green; }
.build-status > * .failed { color: darkred; }
.build-commit-message {
font-family: monospace;
padding: 0.2em 0;
}
2015-09-20 18:04:53 +00:00
#commit-message {
padding: 1em;
background-color: #EEE;
}
2015-08-14 13:06:23 +00:00
#commit-sha { color: #666; }
#commit-sha.ok { color: royalblue; }
#commit-sha.failed { color: orangered; }
.section {
position: relative;
2016-03-06 15:25:13 +00:00
overflow: hidden;
2015-08-14 13:06:23 +00:00
margin: 1em -2em;
padding: 2em;
background-color: black;
color: #909396;
}
.section:hover {
color: inherit;
}
.section:before {
content: attr(data-name);
right: 0.2em;
bottom: 0;
font-family: custom-sans;
font-size: 2em;
color: #C2C5C9;
position: absolute;
}
2015-09-27 19:26:22 +00:00
.section > div {
margin-bottom: -100px;
overflow-y: hidden;
}
.section > div > p {
padding-bottom: 100px;
overflow-x: scroll;
}
2015-08-14 13:06:23 +00:00
.section:hover:before {
color: #909396;
}
.status.failed { color: orangered; }
.status.ok { color: yellowgreen; }