- add sources.
[platform/framework/web/crosswalk.git] / src / webkit / data / test_shell / sort / sort.css
1 body {
2   font-family: Consolas, monospace;
3   font-size: 12px;
4 }
5
6 ul.bar {
7   position: relative;
8   width: 900px;
9   height: 200px;
10   background: gray;
11   border: 2px solid silver;
12 }
13 ul.bar li {
14   position: absolute;
15   bottom: 0px;
16   width: 5px;
17   list-style: none;
18   margin: 0px;
19   padding: 0px;
20   z-index: 2;
21   border: 1px solid black;
22   border-bottom: 0px;
23   background: green;
24 }
25
26 ul.bar .label {
27   position: absolute;
28   top: 5px;
29   left: 5px;
30   background: none;
31 }
32
33 li.compare {
34   border: white;
35   width: 10px;
36 }
37
38 li.compare { 
39   background-color: red;
40 }
41
42 .button {
43   border: 1px dashed silver;
44   padding: 2px;
45   margin: 2px;
46   display: inline;
47 }
48
49 .button:hover {
50   text-decoration:underline;
51   cursor: pointer;
52   background-color: silver;
53 }