OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 } | 76 } |
77 | 77 |
78 button.previous { | 78 button.previous { |
79 margin-right: 0px; | 79 margin-right: 0px; |
80 } | 80 } |
81 | 81 |
82 button[disabled] { | 82 button[disabled] { |
83 visibility: hidden; | 83 visibility: hidden; |
84 } | 84 } |
85 | 85 |
| 86 /* FIXME: This hover effect can't work on mobile. */ |
86 button:hover { | 87 button:hover { |
87 background-image: linear-gradient(#f8f8f8, #f1f1f1); | 88 background-image: linear-gradient(#f8f8f8, #f1f1f1); |
88 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); | 89 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); |
89 background-color: #f8f8f8; | 90 background-color: #f8f8f8; |
90 background-image: linear-gradient(top,#f8f8f8,#f1f1f1); | 91 background-image: linear-gradient(top,#f8f8f8,#f1f1f1); |
91 border: 1px solid #c6c6c6; | 92 border: 1px solid #c6c6c6; |
92 box-shadow: 0 1px 1px rgba(0,0,0,0.1); | 93 box-shadow: 0 1px 1px rgba(0,0,0,0.1); |
93 color: #333 | 94 color: #333 |
94 } | 95 } |
95 | 96 |
96 button:focus { | 97 button:focus { |
97 border: 1px solid #4d90fe; | 98 border: 1px solid #4d90fe; |
98 outline: none | 99 outline: none |
99 } | 100 } |
100 | 101 |
101 button.default { | 102 button.default { |
102 border: 1px solid #3079ED; | 103 border: 1px solid #3079ED; |
103 color: white; | 104 color: white; |
104 background-image: linear-gradient(#4d90fe, #4787ed); | 105 background-image: linear-gradient(#4d90fe, #4787ed); |
105 } | 106 } |
106 | 107 |
| 108 /* FIXME: This hover effect can't work on mobile. */ |
107 button.default:hover { | 109 button.default:hover { |
108 border: 1px solid #2f5bb7; | 110 border: 1px solid #2f5bb7; |
109 color: white; | 111 color: white; |
110 background-color: #357ae8; | 112 background-color: #357ae8; |
111 background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe)
,to(#357ae8)); | 113 background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe)
,to(#357ae8)); |
112 } | 114 } |
113 | 115 |
114 .clear { | 116 .clear { |
115 clear: both; | 117 clear: both; |
116 } | 118 } |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 width: 100%; | 326 width: 100%; |
325 height: auto; | 327 height: auto; |
326 } | 328 } |
327 | 329 |
328 /*** partytime ***/ | 330 /*** partytime ***/ |
329 | 331 |
330 .partytime { | 332 .partytime { |
331 display: none; | 333 display: none; |
332 text-align: center; | 334 text-align: center; |
333 } | 335 } |
OLD | NEW |