-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdiff-s.css
More file actions
65 lines (56 loc) · 1.04 KB
/
diff-s.css
File metadata and controls
65 lines (56 loc) · 1.04 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
#data {
display : none;
}
.deletion, .insertion, .change, .move, .move-change, .unchanged{
border: solid 1px;
}
.deletion {
border-color: #CC929A;
/* border: solid 1px #E6A4AE; */
background-color: LightPink;
}
.insertion {
border-color: #73BE73;
/* border: solid 1px #82D682; */
background-color: LightGreen;
}
.change {
border-color: #8AADB8;
/* border: solid 1px #9CC2CF; */
background-color: LightBlue;
cursor: pointer;
}
.move {
border-color: LightPink;
/* border: solid 1px #BEBEBE; */
cursor: pointer;
}
.move-change {
border-color: LightPink;
background-color: LightBlue;
/* border: solid 1px #BEBEBE; */
cursor: pointer;
}
.unchanged {
border-color: #A9A9A9;
/* border: solid 1px #BEBEBE; */
cursor: pointer;
}
span.keyword {
/* color: #007070; */
font-weight: 700;
}
div.src {
width:48%;
height:98%;
overflow:scroll;
border:1px solid;
float:left;
padding:0.5%;
}
pre {
line-height: 200%;
}
p {
line-height: 200%;
}