OSDN Git Service

Structured System CSS and Theme CSS [0.2.1]
[kit/kit.git] / app / console / console.css
1 .winc-console {
2     padding: 8px;
3     color: #ffffff;
4     background: #000000;
5 }
6
7 .winc-console .textbox {
8     box-sizing: border-box;
9     background: #000000;
10     color: limegreen;
11     border-color: limegreen;
12     width: calc(100% - 35px);
13 }
14
15 .winc-console .textbox::selection {
16     background-color: limegreen;
17     color: black;
18 }
19
20 .winc-console .console-exec {
21     cursor: pointer;
22     float: right;
23     margin: 9px;
24     margin-right: 5px;
25 }
26
27 .winc-console .console-wrapper {
28     box-sizing: border-box;
29     padding: 2px;
30     border: 1px solid gray;
31     margin-top: 10px;
32     overflow: auto;
33     min-height: 200px;
34 }
35
36 .winc-console .simple-box {
37     font-size: 13px;
38     padding: 2px;
39 }
40
41 .winc-console .simple-box::selection {
42     background-color: limegreen;
43     color: black;
44 }
45
46 .winc-console .console-log {
47     color: #a0a0a0;
48 }
49
50 .winc-console .console-log::selection {
51     background-color: limegreen;
52     color: black;
53 }
54
55 .winc-console pre {
56     font-size: inherit;
57     background: transparent;
58     display: inline;
59     font-family: 'Noto Sans JP', sans-serif;
60 }
61
62 .winc-console pre::selection {
63     user-select: text;
64     background: limegreen;
65     color: black;
66 }