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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 .show-only-button { | 61 .show-only-button { |
62 font-size: 8px; | 62 font-size: 8px; |
63 } | 63 } |
64 .show-all-button { | 64 .show-all-button { |
65 font-size: 8px; | 65 font-size: 8px; |
66 } | 66 } |
67 | 67 |
68 .image-link { | 68 .image-link { |
69 text-decoration: none; | 69 text-decoration: none; |
70 } | 70 } |
| 71 |
| 72 .results-header { |
| 73 overflow: hidden; |
| 74 padding: 10px; |
| 75 background-color: #ccccff; |
| 76 } |
| 77 |
| 78 .results-header-actions { |
| 79 float: right; |
| 80 } |
| 81 |
| 82 .sticky { |
| 83 position: fixed; |
| 84 top: 2px; |
| 85 box-shadow: -2px 2px 5px 0 rgba(0,0,0,.45); |
| 86 background: white; |
| 87 right: 2px; |
| 88 padding: 10px; |
| 89 border: 2px solid #222; |
| 90 } |
OLD | NEW |