OLD | NEW |
1 /* Special alert areas at the top of the page. */ | 1 /* Special alert areas at the top of the page. */ |
2 .todo-div { | 2 .todo-div { |
3 background-color: #bbffbb; | 3 background-color: #bbffbb; |
4 } | 4 } |
5 .warning-div { | 5 .warning-div { |
6 background-color: #ffbb00; | 6 background-color: #ffbb00; |
7 } | 7 } |
8 | 8 |
9 .tab-wrapper { | 9 .tab-wrapper { |
10 margin-top: 10px; | 10 margin-top: 10px; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 /* The main working area (connected to the selected tab). */ | 43 /* The main working area (connected to the selected tab). */ |
44 .tab-main { | 44 .tab-main { |
45 background-color: #ccccff; | 45 background-color: #ccccff; |
46 border: 1px solid black; | 46 border: 1px solid black; |
47 } | 47 } |
48 | 48 |
49 .update-results-button { | 49 .update-results-button { |
50 font-size: 30px; | 50 font-size: 30px; |
51 } | 51 } |
52 | 52 |
| 53 /* Odd and even lines within results display. */ |
| 54 .results-odd { |
| 55 background-color: #ddffdd; |
| 56 } |
| 57 .results-even { |
| 58 background-color: #ddddff; |
| 59 } |
| 60 |
53 .show-only-button { | 61 .show-only-button { |
54 font-size: 8px; | 62 font-size: 8px; |
55 } | 63 } |
56 .show-all-button { | 64 .show-all-button { |
57 font-size: 8px; | 65 font-size: 8px; |
58 } | 66 } |
59 | 67 |
60 .image-link { | 68 .image-link { |
61 text-decoration: none; | 69 text-decoration: none; |
62 } | 70 } |
OLD | NEW |