-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathless.css
More file actions
102 lines (84 loc) · 1.41 KB
/
less.css
File metadata and controls
102 lines (84 loc) · 1.41 KB
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
95
96
97
98
99
100
101
102
html,
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.wrap {
margin: 0 auto;
padding: 0 10px;
display: flex;
flex-direction: column;
}
.jsonUtil table {
border-collapse: collapse;
}
.jsonUtil .json {
border: 1px solid #bbb;
font-family: monospace;
line-height: 150%;
background-color: #fff;
word-break: break-all;
}
.jsonUtil .json .string {
color: #f00;
}
.jsonUtil .json .number {
color: #090;
}
.jsonUtil .json .boolean {
color: #00f;
}
.jsonUtil .json .null {
color: #f0f;
}
.jsonUtil .json .key {
color: #777;
}
.jsonUtil .json .string,
.jsonUtil .json .number,
.jsonUtil .json .boolean,
.jsonUtil .json .null {
font-weight: bold;
}
.jsonUtil .json .pojo {
cursor: pointer;
}
.jsonUtil .json .pojo.fold:before {
content: '+';
}
.jsonUtil .json .pojo:before {
content: '-';
}
.jsonUtil .json .pojo.fold .members {
display: none;
}
.jsonUtil .src {
height: 300px;
resize: none;
}
.jsonUtil .dstJava {
height: 500px;
white-space: pre;
resize: vertical;
}
.jsonUtil .dstPretty {
white-space: pre;
overflow: scroll;
}
.ddlToJava .src,
.SqlCreateStatementToAhaWikiFormat .src {
width: 100%;
min-height: 500px;
white-space: pre;
overflow: scroll;
}
.ddlToJava .dstJava,
.SqlCreateStatementToAhaWikiFormat .dstJava,
.ddlToJava .dst,
.SqlCreateStatementToAhaWikiFormat .dst {
width: 100%;
min-height: 500px;
white-space: pre;
overflow: scroll;
}