1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 14:25:14 +03:00
betaflight-configurator/tabs/cli.css
Dominic Clifton 52235f3373 Format all CSS files. Fixed missing trailing brace in
configuration.css.

Formatted using Eclipse 4.4 CSS formatter, line length: 120, spaces not
tabs, indentation 4.
2015-11-10 00:13:21 +00:00

62 lines
No EOL
1.2 KiB
CSS

.tab-cli {
height: 100%;
}
.tab-cli .content_wrapper {
height: calc(100% - 50px);
}
.tab-cli p {
padding: 0px;
border: 0px dotted silver;
}
.tab-cli .note {
margin-bottom: 20px;
}
.tab-cli .backdrop {
border: 1px solid silver;
background-color: rgba(0, 0, 0, 0.75);
margin-top: 0px;
height: calc(100% - 90px); /* - (p, textarea) */
background-image: url("../images/light-wide-1.svg");
background-repeat: no-repeat;
background-position: 50% 80%;
background-size: 600px;
border-radius: 5px;
box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.80);
width: 100%;
}
.tab-cli .window {
height: 100%;
width: 100%;
padding: 5px;
overflow-y: scroll;
overflow-x: hidden;
font-family: monospace;
color: white;
box-sizing: border-box;
-webkit-user-select: text;
float: left;
}
.tab-cli textarea {
-webkit-box-sizing: border-box;
width: 100%;
margin-top: 8px;
height: 22px;
line-height: 20px;
padding-left: 5px;
border: 1px solid silver;
resize: none;
}
.tab-cli #content-watermark {
z-index: 0;
}
.tab-cli .window .wrapper {
white-space: pre-wrap;
}