-
Notifications
You must be signed in to change notification settings - Fork 0
/
selos_brio.css
120 lines (92 loc) · 1.97 KB
/
selos_brio.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
/* --- Selos BRIO --- */
/* Base */
#brio {
position:absolute;
z-index:9999;
}
#brio.left, #brio.right {
top:50%;
margin-top: -77px;
}
#brio.upper_left, #brio.upper_right {
top:0;
}
#brio.left {
left:0;
}
#brio.right {
right:0;
}
#brio.upper_left{
left:0;
margin-left: 77px;
}
#brio.upper_right{
right:0;
margin-right: 77px;
}
/* Link */
#brio a {
display:block;
text-indent:-8000px;
background-repeat:no-repeat;
background-position: 0 0;
overflow:hidden;
}
#brio.left a, #brio.right a {
width:116px;
height:50px;
}
#brio.upper_left a, #brio.upper_right a {
width:56px;
height:100px;
}
/* Images */
#brio.left a {
background-image:url('img/selo_exp_men_dev_h_e.png');
}
#brio.right a {
background-image:url('img/selo_exp_men_dev_h_d.png');
}
#brio.upper_left a, #brio.upper_right a{
background-image:url('img/selo_exp_men_dev_v.png');
}
/* MEDIA QUERIES */
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
/* hidden */
#brio {
display: none;
}
}
/* Retina Displays */
/* Target any device with retina display (ie iPad 3 and MacBook Pro) */
@media
only screen and (-Webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
#brio.left a, #brio.right a {
-moz-background-size: 116px 50px;
-ie-background-size: 116px 50px;
-o-background-size: 116px 50px;
-webkit-background-size: 116px 50px;
background-size: 116px 50px;
}
#brio.upper_left a, #brio.upper_right a {
-moz-background-size: 56px 100px;
-ie-background-size: 56px 100px;
-o-background-size: 56px 100px;
-webkit-background-size: 56x 100x;
background-size: 56px 100px;
}
#brio.left a {
background-image:url('img/selo_exp_men_dev_h_e_2x.png');
}
#brio.right a {
background-image:url('img/selo_exp_men_dev_h_d_2x.png');
}
#brio.upper_left a, #brio.upper_right a {
background-image:url('img/selo_exp_men_dev_v_2x.png');
}
}