blob: a34dd9312dbe4f86e101963479d2ec9d51cdd5de (
plain) (
blame)
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
|
body {
background-color: lightblue;
}
#results li > span, #results ul > span {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding-right: 5px;
padding-left: 5px;
}
#results li {
margin-top: 1px;
padding-left: 15px;
}
#results ul {
padding-left: 15px;
margin-left: -15px;
padding-top: 0px;
margin-top: 0px;
background: url(open.png) no-repeat 2px 5px;
list-style-type: none;
}
#results ul[closed="yes"] {
background: url(closed.png) no-repeat 2px 5px;
}
#results ul[closed="yes"] > * {
display: none;
}
#results ul[closed="yes"] > *:first-child {
display: block;
}
.typeName {
color: gray;
}
.changed {
background-color: #fcff7f;
}
.added {
background-color: #8bff7f;
}
.removed {
background-color: #fd7f7f;
}
textarea {
width: 49%;
height: 200px;
}
.contentbox {
border: 1px dashed black;
background-color: white;
padding: 15px;
margin: 10px;
}
h2 {
text-align: center;
margin: 0px;;
}
#results {
padding-left: 40px;
}
#inputs {
text-align: center;
}
|