-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.css
94 lines (87 loc) · 2.58 KB
/
docs.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
textarea.noodel-editor {
width:100%;
height:5em;
box-sizing: border-box; /* For IE and modern versions of Chrome */
-moz-box-sizing: border-box; /* For Firefox */
-webkit-box-sizing: border-box; /* For Safari */
resize: vertical;
font-family: monospace;
outline: none;
color: white;
background-color: black;
overflow: auto;
}
textarea.noodel-output {
width:100%;
height:5em;
box-sizing: border-box; /* For IE and modern versions of Chrome */
-moz-box-sizing: border-box; /* For Firefox */
-webkit-box-sizing: border-box; /* For Safari */
resize: vertical;
font-family: monospace;
outline: none;
color: white;
background-color: black;
overflow: auto;
}
textarea.noodel-input {
width:100%;
height:2em;
box-sizing: border-box; /* For IE and modern versions of Chrome */
-moz-box-sizing: border-box; /* For Firefox */
-webkit-box-sizing: border-box; /* For Safari */
resize: vertical;
font-family: monospace;
outline: none;
color: white;
background-color: black;
overflow: auto;
}
div.noodel-chars {
width:100%;
height:26em;
box-sizing: border-box; /* For IE and modern versions of Chrome */
-moz-box-sizing: border-box; /* For Firefox */
-webkit-box-sizing: border-box; /* For Safari */
font-family: monospace;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
word-wrap: none;
}
div.noodel-chars a {
padding-left: 5px;
padding-right: 5px;
margin: 5px;
cursor: pointer;
border-radius: 3px;
background-color: #dddddd;
color: black;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;
}
div.noodel-char_table {
width:100%;
height:26em;
box-sizing: border-box; /* For IE and modern versions of Chrome */
-moz-box-sizing: border-box; /* For Firefox */
-webkit-box-sizing: border-box; /* For Safari */
font-family: monospace;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
word-wrap: none;
}
div.noodel-char_table span {
padding-left: 5px;
padding-right: 5px;
margin: 5px;
border-radius: 3px;
background-color: #dddddd;
color: black;
cursor: default;
}