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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 td:last-of-type, th:last-of-type { | 49 td:last-of-type, th:last-of-type { |
50 /* border-right: 0px; */ | 50 /* border-right: 0px; */ |
51 } | 51 } |
52 | 52 |
53 th { | 53 th { |
54 /* border-bottom: 1px solid #c6c6c6; */ | 54 /* border-bottom: 1px solid #c6c6c6; */ |
55 } | 55 } |
56 | 56 |
57 button { | 57 button { |
58 border-radius: 2px; | 58 border-radius: 2px; |
59 background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1); | 59 background-image: linear-gradient(#f5f5f5, #f1f1f1); |
60 border: 1px solid rgba(0, 0, 0, 0.1); | 60 border: 1px solid rgba(0, 0, 0, 0.1); |
61 border-radius: 2px; | 61 border-radius: 2px; |
62 color: #666; | 62 color: #666; |
63 cursor: pointer; | 63 cursor: pointer; |
64 font-size: 11px; | 64 font-size: 11px; |
65 font-weight: bold; | 65 font-weight: bold; |
66 height: 29px; | 66 height: 29px; |
67 line-height: 27px; | 67 line-height: 27px; |
68 margin: 11px 6px; | 68 margin: 11px 6px; |
69 min-width: 54px; | 69 min-width: 54px; |
70 padding: 0 8px; | 70 padding: 0 8px; |
71 text-align: center | 71 text-align: center |
72 } | 72 } |
73 | 73 |
74 button.next { | 74 button.next { |
75 margin-left: 0px; | 75 margin-left: 0px; |
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 button:hover { | 86 button:hover { |
87 background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1); | 87 background-image: linear-gradient(#f8f8f8, #f1f1f1); |
88 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); | 88 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); |
89 background-color: #f8f8f8; | 89 background-color: #f8f8f8; |
90 background-image: linear-gradient(top,#f8f8f8,#f1f1f1); | 90 background-image: linear-gradient(top,#f8f8f8,#f1f1f1); |
91 border: 1px solid #c6c6c6; | 91 border: 1px solid #c6c6c6; |
92 box-shadow: 0 1px 1px rgba(0,0,0,0.1); | 92 box-shadow: 0 1px 1px rgba(0,0,0,0.1); |
93 color: #333 | 93 color: #333 |
94 } | 94 } |
95 | 95 |
96 button:focus { | 96 button:focus { |
97 border: 1px solid #4d90fe; | 97 border: 1px solid #4d90fe; |
98 outline: none | 98 outline: none |
99 } | 99 } |
100 | 100 |
101 button.default { | 101 button.default { |
102 border: 1px solid #3079ED; | 102 border: 1px solid #3079ED; |
103 color: white; | 103 color: white; |
104 background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed); | 104 background-image: linear-gradient(#4d90fe, #4787ed); |
105 } | 105 } |
106 | 106 |
107 button.default:hover { | 107 button.default:hover { |
108 border: 1px solid #2f5bb7; | 108 border: 1px solid #2f5bb7; |
109 color: white; | 109 color: white; |
110 background-color: #357ae8; | 110 background-color: #357ae8; |
111 background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe)
,to(#357ae8)); | 111 background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe)
,to(#357ae8)); |
112 } | 112 } |
113 | 113 |
114 .clear { | 114 .clear { |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 width: 100%; | 324 width: 100%; |
325 height: auto; | 325 height: auto; |
326 } | 326 } |
327 | 327 |
328 /*** partytime ***/ | 328 /*** partytime ***/ |
329 | 329 |
330 .partytime { | 330 .partytime { |
331 display: none; | 331 display: none; |
332 text-align: center; | 332 text-align: center; |
333 } | 333 } |
OLD | NEW |