betaflight-configurator/tabs/cli.css

63 lines
1.1 KiB
CSS
Raw Normal View History

.tab-cli {
2014-05-05 10:20:39 +00:00
height: 100%;
}
2014-09-20 12:07:00 +00:00
.tab-cli p {
2015-10-30 00:03:39 +00:00
padding: 0px;
border: 0px dotted silver;
2014-09-20 12:07:00 +00:00
}
2015-02-27 01:11:53 +00:00
.tab-cli .backdrop {
border: 1px solid silver;
background-color: rgba(0,0,0,0.75);
2015-02-27 01:11:53 +00:00
2015-10-30 00:03:39 +00:00
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;
/*background-image: url("../images/cli_backdrop.png");
/* */
border-radius: 5px;
box-shadow: inset 0px 0px 20px rgba(0,0,0,0.80);
float:left;
width:100%;
2015-10-30 00:03:39 +00:00
2015-02-27 01:11:53 +00:00
}
.tab-cli .window {
height:100%;
2015-10-30 00:03:39 +00:00
width:100%;
2014-09-20 12:07:00 +00:00
padding: 5px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
overflow-y: scroll;
overflow-x: hidden;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
font-family: monospace;
color: white;
2014-03-08 05:25:15 +00:00
2015-02-27 01:11:53 +00:00
box-sizing: border-box;
2014-09-20 12:07:00 +00:00
-webkit-user-select: text;
2015-10-30 00:03:39 +00:00
float:left;
2014-09-20 12:07:00 +00:00
}
.tab-cli textarea {
-webkit-box-sizing: border-box;
2014-04-19 20:23:44 +00:00
2014-09-20 12:07:00 +00:00
width: 100%;
2014-04-19 20:23:44 +00:00
2014-09-20 12:07:00 +00:00
margin-top: 8px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
height: 22px;
line-height: 20px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
padding-left: 5px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
border: 1px solid silver;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
resize: none;
2015-02-27 01:11:53 +00:00
}
.tab-cli #content-watermark {
z-index:0;
}
.tab-cli .window .wrapper {
white-space: pre-wrap;
2014-09-20 12:07:00 +00:00
}