-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
1341 lines (1118 loc) · 21.6 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
@import url("http://www.google.com/css/inlay.css");
@import url("http://www.google.com/css/modules/buttons/g-button-chocobo.css");
*/
html {
background: #fff;
}
body {
font-size: 13px;
font-family: Arial;
margin: 0 10px;
padding: 0;
}
body a {
color: #3366CC;
text-decoration: none;
}
body a:hover {
text-decoration: underline;
}
h2 {
font-weight: bold;
font-size: 1.3em;
margin: 0 0 25px 0;
padding: 0;
}
.page {
margin: 0 auto 25px auto;
width: 960px;
}
.dataman .page,
.dataman .header.border {
width: 100%;
}
.dataman .frame {
border: 4px solid #bcf;
padding: 10px;
}
.dataman .breadcrumb {
background: #bcf;
color: #000;
padding: 8px 0 2px 10px;
height: auto;
}
.dataman .breadcrumb a {
color: #00C;
text-decoration: underline;
}
.dataman .version {
color: #999;
font-size: 11px;
padding: 0 10px 0 0;
}
.dataman .version.prod span {
color: red;
}
.header.border {
margin: 0 auto 25px auto;
width: 960px;
}
.header {
height: 40px;
}
.header h1 {
color: #888;
float: left;
font-size: 24px;
font-weight: normal;
margin: 30px 0 0 0;
padding: 0;
}
.header h1 img {
border: 0;
float: left;
margin: -15px 15px 0 0px;
}
.header form {
float: right;
margin: 20px 0px 0 0;
}
.header form input[type=text] {
border: 1px solid #ccc;
border-bottom: 1px solid #999;
border-right: 1px solid #999;
font-family: inherit;
font-size: inherit;
padding: .2em;
width: 12em;
}
/* TODO(jeremydw): Remove external dependencies. */
.mainmenu {
background: url('http://www.google.com/mobile/images/mgc3/toolbarbg.png') repeat-x;
height: 45px;
margin-bottom: -10px;
}
.mainmenu ul {
height: 33px;
list-style: none;
margin: 0 0 0 25px;
padding: 0;
}
.mainmenu ul li {
background: url('http://www.google.com/mobile/images/mgc3/mgc-toolbar-item-bg.png') top left no-repeat;
float: left;
font-size: 16px;
height: 33px;
}
.mainmenu ul li a {
color: #fff;
display: block;
line-height: 33px;
padding: 0 15px 0;
text-decoration: none;
outline: none;
}
.mainmenu ul li a:hover {
text-shadow:1px 1px 4px rgba(255,255,255,0.75);
}
.mainmenu ul li a:active {
text-shadow:1px 1px 4px rgba(255,255,255,1);
}
.content {
margin: 15px auto 0px;
}
.footer {
color: #555;
margin: 20px auto;
text-align: center;
}
.footer.small {
margin-top: -5px;
margin-bottom: 25px;
font-size: 11px;
}
ul.phonelist li {
list-style: none;
margin: 0;
padding: 0;
}
ul.phonelist li .name a {
color: #1111CC;
text-decoration: none;
}
ul.phonelist li.list .name a img {
border:0;
}
.home img.withgoogle,
.phonedetail img.withgoogle {
margin-left: 5px;
margin-top: -5px;
vertical-align: middle;
}
img.withgoogle {
margin: -5px 3px auto;
vertical-align: middle;
}
ul.phonelist li img.withgoogle {
margin-top: -5px;
}
ul.phonelist .name a:visited {
color: #551A8B;
}
ul.phonelist li.list img.phone {
display: block;
float: left;
height: 100px;
margin: 0 20px 0 0;
width: 100px;
}
ul.phonelist li.list .buy-from div.title {
color: #555;
font-size:11px;
margin:0 0 5px 0;
}
ul.phonelist li.list .buy-from {
text-align:center;
}
ul.phonelist li.list .buy-from .inline-compare-button {
max-width: 100%;
margin: 0 0 0 0;
position: relative;
}
.phonedetail .buy-from {
margin: -3px 0 0 20px;
display: inline-block;
position: relative;
}
ul.phonelist li.list .buy-from img,
.phonedetail .buy-from img {
border: 0;
width: 70px;
height: 35px;
float: none;
padding: 3px;
display: inherit;
margin: 0;
}
.browse .stuck {
position: fixed;
top: 0;
z-index: 1000;
}
.browse ul.phonelist li.grid {
float: left;
height: 240px;
margin: 0 10px 15px 30px;
text-align: center;
overflow: hidden;
width: 235px;
}
.browse ul.phonelist li.grid .name {
display: block;
margin:0 0 5px 0;
}
.browse ul.phonelist li.grid .image {
display:block;
text-align:center;
margin:0 0 5px 0;
}
.browse ul.phonelist li.grid .image img {
width:180px;
height:180px;
border: 0;
outline: 0;
}
.browse ul.phonelist li.grid .inline-compare-true {
color: #ddd;
outline: none;
}
.browse ul.phonelist li.grid .inline-compare-button:hover {
text-decoration: none;
}
.browse ul.phonelist li.grid .inline-compare-button {
font-size: 11px;
}
ul.phonelist li.list .buy-from,
.phonedetail .buy-from a {
outline: none;
text-align: center;
text-decoration: none;
margin: 0;
}
.phonedetail .buy-from a img {
margin: 3px 0 0 0;
border: 1px solid #fff;
}
.phonedetail .buy-from a:hover img {
margin: 3px 0 0 0;
}
ul.phonelist li.list .buy-from a img {
border: 1px solid #fff;
}
ul.phonelist li.list .buy-from a:hover {
text-decoration: none;
}
ul.phonelist li.list .buy-from a:active img,
.phonedetail .buy-from a:active img {
border-color:#999 #CCC #CCC #999;
}
ul.phonelist li.list .buy-from a:hover img,
.phonedetail .buy-from a:hover img {
border-color:#CCCCCC #999999 #999999 #CCCCCC;
border-style:solid;
border-width:1px;
}
ul.phonelist li.list .learnmore a {
margin-right: 15px;
}
ul.phonelist li.list .learnmore a.buy {
font-weight: bold;
text-decoration: underline;
}
.sidebar-compare form {
margin:0 0 3px 0;
}
.sidebar-compare .title {
height: 40px;
}
.sidebar-compare ul {
list-style: none;
margin: 0;
padding: 0;
line-height: 0;
}
.sidebar-compare ul li {
display: block;
margin:0 0 10px 0;
}
.sidebar-compare ul li a {
}
.sidebar-compare ul li a:hover {
text-decoration: none;
}
.sidebar-compare ul li a.remove {
width: 16px;
height: 16px;
display: inline-block;
background: url('http://www.google.com/phone/static/images/x.png');
background-position:0 -16px;
margin:0 0 0 108px;
position: absolute;
}
.sidebar-compare ul li a.remove:hover {
background-position:0 0px;
}
.sidebar-compare ul li.empty {
height: 100px;
padding: 0;
margin: 0 0 10px 0;
width: 100px;
}
.sidebar-compare ul li.full img,
.compare img.full {
border:1px solid #5983db !important;
}
.sidebar-compare ul li img {
display: inline-block;
width: 73px;
height: 73px;
padding: 13px;
border: 1px solid #d6deee;
margin: 0;
}
.home h3 {
font-size: 16px;
font-weight: bold;
}
.home .banner {
background: #f5f7fd;
border: 1px solid #d6deee;
margin: 20px 0 30px 0;
padding: 10px 0 0;
}
.home .banner .banner-image {
margin: -10px 0 0 13px;
position: absolute;
}
.home .banner .overflow-image {
margin: -55px 0 0 30px;
position: absolute;
}
.home .banner h3 {
font-family: Droid Sans;
font-size: 25px;
font-weight: normal;
margin: 0;
}
.home .banner .right-content p {
font-size:16px;
}
.home .banner .right-content {
float: right;
height: 180px;
margin: 10px 20px;
padding: 0 20px 0 0;
width: 340px;
}
.compare table.slides div.item {
border-right: 1px solid #d2dbed;
}
.compare table.slides td {
width: 33%;
}
.compare table.slides td.last div.item {
width: 270px;
margin: 0;
}
.home .carousel {
margin:0 auto;
width:843px;
height: 180px;
position: relative;
}
.home .carousel .items {
overflow:hidden;
height: 162px;
width: 843px;
position: absolute;
border-right: 1px solid #d6deee;
}
.compare div.item,
.home .carousel .items div.item {
background: #f5f7fd;
border: 1px solid #d6deee;
border-right: 0;
padding: 15px;
float: left;
height: 130px;
width: 250px;
}
.compare div.item {
float: inherit;
width: auto;
}
.home .carousel .items .clip {
position: absolute;
width: 890px;
}
.home .carousel .items div.item div.phone-image,
.compare div.phone-image {
float: left;
height: 120px;
margin: 0 15px 0 0;
width: 90px;
}
.home .carousel .items div.item div.phone-image img,
.compare div.phone-image img {
display: block;
height: 70px;
width: 70px;
padding:10px;
border: 0;
background:#fff;
border: 1px solid #d6deee;
}
.browse .navbar .picker {
display: none;
margin: 0 0 10px 0;
}
.navbar ul {
padding: 0;
list-style: none;
margin:0 0 13px 0;
}
.navbar ul li a {
color: #11C;
}
.navbar ul li.active a {
text-decoration: none;
font-weight: bold;
color: black;
}
.navbar ul li {
line-height: 1.4em;
}
.navbar ul li.picker {
font-weight: bold;
}
.navbar img {
border: 0;
padding: 1px 3px;
vertical-align: middle;
}
.browse .navbar-disclaimer {
color: #555;
font-size: 11px;
padding: 0 20px 0 0;
}
.browse .navbar fieldset {
border: 0;
margin: 0 0 15px 0;
padding: 0;
}
.browse .layout a {
background: url('http://www.google.com/phone/static/images/listgrid.png');
width: 19px;
height: 19px;
border: 1px solid #7081ab;
text-indent: -999em;
overflow: none;
outline: none;
}
.browse .layout a.list-selector.active {
background-position: 19px 0;
}
.browse .layout a.list-selector {
-webkit-border-top-left-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-topleft: 3px;
-moz-border-radius-bottomleft: 3px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
background-position: 38px 0;
}
.browse .layout a.grid-selector.active {
background-position: 57px;
}
.browse .layout a.grid-selector {
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
background-position: 0 0;
}
.browse .layout a:hover {
text-decoration: none;
border-color: #555;
}
.browse .layout a {
display: inline-block;
margin-left: -1px;
}
.browse .sortby,
.browse .layout {
margin-top: 1px;
height: 40px;
}
.browse .sortby {
float: right;
}
.browse .layout {
float: right;
}
.browse .sortby a.active {
color: #000;
font-weight: bold;
text-decoration: none;
}
.browse .layout a.active {
color: #000;
}
.phonedetail .phonedetail-container {
background: url('http://www.google.com/phone/static/images/container.border.png') top right no-repeat;
margin: 0 20px 0 0;
min-height: 460px;
padding: 0 20px 0 0;
}
.browse .phonelist-container {
background: url('http://www.google.com/phone/static/images/container.border.png') top right repeat-y;
margin: 0 20px;
min-height: 450px;
padding: 0 20px 0 15px;
}
.browse .phonelist-border-left {
background: url('http://www.google.com/phone/static/images/container.border.png') top left repeat-y;
}
.browse ul.phonelist {
list-style: none;
margin: 0;
padding: 0;
}
.browse ul.phonelist li {
position: relative;
margin: 0 0 25px 0;
padding: 0;
}
#names-list li.list .name {
float: left;
}
#names-list li.list .description {
float: left;
padding-left: 20px;
font-size: 10px;
margin: 6px;
}
.browse ul.phonelist li.list .name strong {
font-size: 16px;
font-weight: normal;
}
.browse div.pagenav {
margin: 10px 0;
text-align: center;
}
.browse div.pagenav a {
margin: 0;
padding: 8px 6px;
}
.browse div.pagenav a.nextprev.hidden {
visibility: hidden;
}
.browse div.pagenav a.nextprev {
color: #1111CC;
font-weight: bold;
margin: 0 20px;
padding: 0;
text-decoration: underline;
}
.browse div.pagenav a.active {
color: #000;
cursor: default;
font-weight: bold;
text-decoration: none;
}
/* Page: Phone Detail */
.phonedetail .thumbs {
margin:0 0 15px 0;
}
.phonedetail .thumbs span.thumb {
}
.phonedetail .thumbs span.thumb img {
border: 1px solid #d2dbed;
padding: 6px;
height: 30px;
margin: 0 9px 0 0;
width: 30px;
}
.home .carousel .items img:hover {
border:1px solid #5983db !important;
}
.phonedetail .thumbs span.thumb img:hover,
.phonedetail .thumbs span.thumb img {
cursor: pointer;
}
.phonedetail .thumbs .label {
color: #555;
font-size: 11px;
padding: 0;
display: block;
position: relative;
vertical-align: top;
margin:0 0 10px 0;
}
.phonedetail .thumbs span.active-border {
display: none;
}
.phonedetail .thumbs span.active img {
border-color: #5983DB;
}
.phonedetail .thumbs img.large {
max-width: 350px;
margin:0 0 5px 0;
}
.home .phone-banner .g-button {
background-color: #e0ecff;
width: inherit;
}
.home .phone-banner .banner-image {
margin: -55px 0 0 0;
position: absolute;
z-index:0;
}
.home .phone-banner {
padding: 40px 0 0 0;
height: 260px;
}
.home .phone-banner .caption a {
font-weight: bold;
}
.home .phone-banner .caption {
z-index:1;
width: 90px;
margin: 2px 0 0 200px;
position: absolute;
}
.home .subtitle h3,
.compare .title h2,
.phonedetail .title h2 {
float: left;
}
.home .subtitle h3 {
margin-top: 0;
}
.home .subtitle span,
.compare .title span,
.phonedetail .title span {
display: block;
float: left;
padding: 4px 0 0 20px;
}
div.breadcrumb,
div.breadcrumb {
color: #555;
height: 30px;
}
.phonedetail .title button {
float: right;
}
.phonedetail .description {
line-height: 1.3em;
margin: 0px 30px 15px 0;
width: 270px;
}
.phonedetail .bbb {
margin:0 30px 5px 0;
overflow: visible;
}
.phonedetail .bbb .g-button-basic {
float: left;
display: inline-block;
font-size: 10px !important;
width: auto;
}
.phonedetail .buy a {
margin: 0px 30px 20px 30px;
font-weight: bold;
}
.compare table.details,
.phonedetail table {
border-collapse: collapse;
border-top: 1px solid #ebeff9;
width: 100%;
margin:0 0 15px 0;
}
.compare table.details th,
.phonedetail table th {
text-align: left;
}
.compare table.details th,
.compare table.details td,
.phonedetail table th,
.phonedetail table td {
border-bottom: 1px solid #ebeff9;
padding: 4px 6px;
vertical-align: top;
}
.compare table.details thead th,
.compare table.details thead td {
border-bottom: 0 !important;
}
.compare table.details th,
.phonedetail table th {
color: #555;
font-weight: normal;
width: 160px;
}
.phonedetail table thead th,
.phonedetail table thead td,
.compare table.details th.strong {
padding-left: 5px;
font-weight: bold !important;
background: #ebeff9;
color: black;
}
.compare table.details th {
width: 20%;
}
.compare table.details .medium {
text-align:center;
}
.compare table.details .medium img {
border: 0 !important;
width: 150px;
height: 150px;
}
.compare table.details td {
width: 25%;
padding-right: 15px;
}
.compare table.buyfrom p {
margin: 3px 0;
}
.compare table.buyfrom p.strong {
color:#555;
}
.compare table.buyfrom a {
font-weight: bold;
}
.compare table.buyfrom {
text-align: center;
margin: 0px 0;
}
.compare table.slides {
border-collapse: collapse;
margin: 0px 0 20px 0;
width: 100%;
}
.compare table.slides th {
}
.dataman table {
border-collapse: collapse;
border-top: 1px solid #d2dbed;
width: 100%;
margin:0 0 20px 0;
border-left: 1px solid #d2dbed;
border-right: 1px solid #d2dbed;
}
.dataman table .meta {
color: #999;
font-size: 11px;
}
.dataman table thead tr {
font-size: 11px;
}
.dataman table tr.bad-data {
background: #fee3e2;
}
.dataman table td,
.dataman table th {
border-bottom: 1px solid #d2dbed;
padding: 4px;
vertical-align: top;
}
.dataman .header form {
margin-top: 15px;
}
.dataman img.dataman-image {
max-width:100px;
}
.dataman table tbody tr:hover td,
.dataman table tbody tr:hover th {
background: #f6f9ff;
}
.dataman table.form th {
font-weight:normal;
text-align:left;
width:250px;
}
.dataman table.form textarea {
height: 80px;
width: 95%;
}
.dataman table.form textarea[disabled] {
background: #efefef;
}
.dataman table thead tr {
background: #e8eef7;
font-size: 13px;
font-weight: bold;
}
.dataman table tfoot tr {
background: #efefef;
}
.dataman table input[type=text] {
border: 1px dotted #ccc;
font: 13px 'Arial';
padding: 3px 5px;
width: 98%;
}
.dataman table input[type=text]:hover {
cursor: pointer;
}
.dataman table input[type=text]:active,
.dataman table input[type=text]:hover {
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-bottom: 1px solid #999;
border-right: 1px solid #999;
}
.dataman h2 {
background: #E3E9FF;
padding: 7px 10px;
margin: -10px -10px 15px -10px;
font-weight: bold;
}