Skip to content

Instantly share code, notes, and snippets.

@Lerie82
Last active April 19, 2024 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lerie82/ecca42d3fa5318b20bc9a144b27cc70a to your computer and use it in GitHub Desktop.
Save Lerie82/ecca42d3fa5318b20bc9a144b27cc70a to your computer and use it in GitHub Desktop.
windows console css
<style type="text/css">
body {
margin: 0;
padding: 0;
background-color: #EFEFEF;
font-family: "segoe ui light", "segoe ui";
letter-spacing: 0.03em;
}
table {
border-collapse: collapse;
}
th {
border: 1px solid #222;
text-align: center;
}
tr {
height: 1.5em;
border: 1px solid #222;
}
td {
border: 1px solid #222;
}
#top-btn {
position: fixed;
padding: 5px;
border: 2px solid #333;
cursor: pointer;
}
#top-btn p {
margin: 0;
}
#report-wrapper {
width: 1000px;
margin: 0 auto;
}
#session-graph-wrapper {
background-color: #1F1F1F;
outline: 2px solid #AAA;
}
#session-graph {
cursor: pointer;
}
#graph-event-info {
float: left;
width: 500px;
height: 170px;
color: #DDD;
padding: 0px 30px 0px 20px;
}
#graph-event-info h4 {
margin: 0px 0px 10px 0px;
}
#event-info {
margin: 0;
height: 135px overflow: scroll;
}
#sysinfo {
margin: 0px 0px 30px 0px;
}
#sysinfo p {
margin: 0;
padding: 0;
}
#report-info p {
margin: 0;
padding: 0;
}
#disconnect-status tr {
border: 1px solid #222;
}
#disconnect-status td {
border: 1px solid #222;
}
#disconnect-status .status {
width: 300px;
padding-top: 0px;
}
#disconnect-reasons .reason {
width: 800px;
padding-top: 0;
}
.count {
width: 75px;
text-align: center;
}
.graph-background {
position: absolute;
z-index: -1;
height: 1.5em;
margin: -1px;
background-color: rgb(171,168,244);
}
.graph-background.success {
background-color: rgb(108, 216, 108);
}
.graph-background.failure {
background-color: rgb(216, 108, 108);
}
.graph-background.warning {
background-color: rgb(216, 216, 108);
}
#session-durations {
border-left: 1px solid #222;
overflow: hidden;
}
#duration-labels {
text-align: center;
}
#duration-graph {
height: 550px;
border: none;
}
#duration-graph td {
width: 80px;
padding: 0px 2px 0px 2px;
vertical-align: top;
position: relative;
border: none;
}
.duration-bar {
width: 80px;
position: absolute;
}
.bar-label {
width: 80px;
position: absolute;
text-align: center;
font-weight: bold;
}
.bar-background {
background-color: rgb(171,168,244);
display: block;
width: 100%;
height: 100%;
outline: 1px solid #222;
}
.session {
background-color: #FFF;
margin: 0px 0px 20px 0px;
padding: 10px;
border: 2px solid #666;
}
.session p {
margin: 0.2em;
}
.session table {
width: 100%;
}
.session .event-header {
width: 75px;
}
.session .time-header {
width: 180px;
}
.session .message-header {
width: auto;
}
.successful {
background-color: #1BEB00;
}
.warning {
background-color: #EBEB00;
}
.failed {
background-color: #F00;
}
.info {
background-color: #E2E2E2;
}
.message {
width: 700px;
height: 1.5em;
overflow: hidden;
white-space: pre;
text-overflow: ellipsis;
}
.message.show {
height: auto;
overflow: auto;
white-space: normal;
}
.message .expand-btn {
cursor: pointer;
}
.error {
background-color: rgb(255,178,178);
font-weight: bold;
}
.ndis.sleep {
background-color: #AF9AE4;
}
.ndis.wake {
background-color: #E49AEF;
}
.wlan {
background-color: #FFF;
}
.wlan.connect {
background-color: #9AE4A6;
}
.wlan.disconnect {
background-color: #F5BE9C;
}
.ncsi.internet {
background-color: #9CCAF5;
}
.ncsi.local {
background-color: #F1F59C;
}
.ncsi.none {
background-color: #F59C9C;
}
.wcm {
background-color: #F0FFFF;
}
.eap {
background-color: #FFFFF0;
}
.glow {
font-weight: bold;
outline: 3px solid #000000;
}
#commands-output {
margin: 0px 0px 30px 0px;
}
.command-output {
background-color: #000;
color: #C0C0C0;
padding: 5px;
outline: 5px solid #BBB;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment