aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skpdiff/viewer_style.css
diff options
context:
space:
mode:
authorGravatar zachr@google.com <zachr@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-22 18:46:45 +0000
committerGravatar zachr@google.com <zachr@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-22 18:46:45 +0000
commit5b3e2b96227f21d9643ca1678d777fd23767756d (patch)
treec678f3e44284d8027aac57e81dd2c89fe2545659 /tools/skpdiff/viewer_style.css
parentfc1666707700e386746c1713077af2f9123aa267 (diff)
move skpdiff into tools
R=djsollen@google.com Review URL: https://codereview.chromium.org/19608005 git-svn-id: http://skia.googlecode.com/svn/trunk@10249 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools/skpdiff/viewer_style.css')
-rw-r--r--tools/skpdiff/viewer_style.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/tools/skpdiff/viewer_style.css b/tools/skpdiff/viewer_style.css
new file mode 100644
index 0000000000..140deaa55b
--- /dev/null
+++ b/tools/skpdiff/viewer_style.css
@@ -0,0 +1,80 @@
+body, img, div {
+ font-family: Verdana;
+ margin: 0;
+ padding: 0;
+}
+
+table {
+ width:100%;
+ border-collapse: collapse;
+ border-spacing: 0;
+ padding: 8px;
+}
+
+td {
+ border-top: 1px solid #DDD;
+ padding: 8px;
+}
+thead > tr > td {
+ border: none;
+}
+
+.gm-image {
+ border: 1px dotted black;
+}
+
+.gm-image:hover {
+ border: 1px dashed black;
+}
+
+.left-image {
+ float: right;
+}
+
+.right-image {
+ text-align: right;
+}
+
+.result {
+ padding: 8px;
+ cursor: default;
+ opacity: 0.7;
+}
+
+.result:hover {
+ border: 2px dotted #DDD;
+ padding: 6px;
+ opacity: 1.0;
+}
+
+.result-0 {
+ background-color: #268bd2;
+}
+
+.result-1 {
+ background-color: #d33682;
+}
+
+.result-2 {
+ background-color: #b58900;
+}
+
+.result-3 {
+ background-color: #cb4b16;
+}
+
+.result-4 {
+ background-color: #6c71c4;
+}
+
+.result-5 {
+ background-color: #dc322f;
+}
+
+.result-6 {
+ background-color: #2aa198;
+}
+
+.result-7 {
+ background-color: #859900;
+}