aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skpdiff/viewer_style.css
blob: 1e4420fe850ca8dfc1622a1d9f8d136ec0663767 (plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
body, img, div {
    font-family: Verdana;
    margin: 0;
    padding: 0;
}

table {
    width: auto;
    border-collapse: collapse;
    border-spacing: 0;
    padding: 8px;
}

td {
    border-top: 1px solid #DDD;
    padding: 16px;
}
thead > tr > td {
    border: none;
}

button {
    font-family: Verdana;
    font-weight: 900;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height:20px;
    padding: 2px;
    background: #EEE;
    border-radius: 2px;
    box-shadow: inset 0 0 8px -2px black;
}

input[type="checkbox"]:checked {
    background: #a9db80;
    background:  -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%);
}

input[type="checkbox"]:active {
    background: #a9db80;
    background: -webkit-linear-gradient(top, #009ec3 0%,#00b7ea 100%);
}

input[type="checkbox"].lastselected {
    padding: 0;
    border: 2px solid #009ec3;
    box-shadow: inset 0 0 8px -2px black, 0 0 6px black;
}

.commit {
    position: absolute;
    top: 8px;
    right: 8px;
}

.commit > button {
    border: 1px solid #00687F;
    border-radius: 4px;
    padding: 8px;
    color: white;
    text-shadow: 0 0 4px black;
    box-shadow: 0 0 8px black;
    background: #a9db80;
    background: -webkit-linear-gradient(top, #a9db80 0%,#96c56f 100%);
}

.commit > button:active {
    background: #96c56f;
    background: -webkit-linear-gradient(top, #96c56f 0%,#a9db80 100%);
}

.common-name {
    vertical-align: top;
}


.gm-image {
    border: 1px dotted black;
}

.gm-image:hover {
    border: 1px dashed black;
}

.selected {
    background: #ffff88;
}

.left-image {
    float: right;
}

.right-image {
    text-align: right;
}

.success-flash {
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: greenflash;
}

.failure-flash {
    -webkit-animation-duration: 0.8s;
    -webkit-animation-name: redflash;
}

@-webkit-keyframes greenflash {
    from {
        background-color: #8F8;
    }

    to {
        background-color: #FFF
    }
}

@-webkit-keyframes redflash {
    from {
        background-color: #F88;
    }

    to {
        background-color: #FFF
    }
}

.result {
    padding: 8px;
    cursor: default;
    -webkit-filter: grayscale(30%)
}

.result:hover {
    border: 2px dotted #DDD;
    padding: 6px;
    -webkit-filter: grayscale(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;
}