-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathjdd.css
115 lines (96 loc) · 1.8 KB
/
jdd.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
padding: 0px 0px;
margin: 0px 0px;
}
pre {
background-color:#eee;
overflow:auto;
margin:0 0 1em;
padding:.5em 1em;
}
pre .codeLine,
pre .line-number {
/* Ukuran line-height antara teks di dalam tag <code> dan <span class="line-number"> harus sama! */
font:normal normal 13px/16px "Monospace;
color:black;
display:block;
}
pre.codeBlock span.code {
min-width: 97%;
display: inline-block;
}
pre .line-number {
margin:0 1em 0 -1em;
border-right:1px solid;
text-align:right;
-webkit-user-select: none; /* Chrome/Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+ */
-o-user-select: none;
user-select: none;
padding-left: 0.4em;
padding-right: 0.2em;
}
pre .line-number span {
display:block;
padding:0 .5em 0 1em;
}
pre .cl {
display:block;
clear:both;
}
div.container {
position: relative;
margin: 0 auto;
}
pre.left {
width: 40%;
display: inline-block;
vertical-align: top;
}
pre.right {
width: 40%;
display: inline-block;
vertical-align: top;
margin-left: 1em;
}
ul.toolbar {
position: absolute;
top: 0px;
bottom: 0px;
right: 0px;
width: 12%;
border: thin solid lightgray;
background: #fbfbfb;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
ul.toolbar li {
margin: 1em 5px;
}
div.gutter {
float: left;
}
div.codeLine span.diff {
cursor: pointer;
}
div.codeLine span.eq {
background: rgba(50, 57, 88, 0.1);
}
div.codeLine span.type {
background: rgba(192, 100, 94, 0.1);
}
div.codeLine span.missing {
background: rgba(0, 100, 80, 0.1);
}
div.codeLine span.selected {
background: #86abd9;
color: white;
}
canvas.center {
position: absolute;
left: 40%;
width: 20%;
height: 100%;
top: 0;
}