blob: c1506e785caad1eb1762271a622448ec2bd21b2c (
plain)
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
|
/* === Red Circle Arrow Buttons ==*/
.mblDomButtonRedCircleArrow {
position: relative;
width: 29px;
height: 29px;
}
.mblDomButtonRedCircleArrow > div {
position: relative;
top: 2px;
left: 2px;
width: 22px;
height: 22px;
border: 1px solid #B5B6B5;
-webkit-border-radius: 12px;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
.mblDomButtonRedCircleArrow > div > div {
position: relative;
top: 2px;
left: 2px;
width: 18px;
height: 18px;
-webkit-border-radius: 9px;
background: -webkit-gradient(linear, left top, left bottom, from(#D3656D), to(#BC1320), color-stop(0.5, #C9404B), color-stop(0.5, #BC1421));
}
.mblDomButtonRedCircleArrow > div > div > div {
position: absolute;
top: 5px;
left: 6px;
width: 8px;
height: 3px;
margin: 0px;
font-size: 1px;
border-style: none;
background: white;
-webkit-transform: rotate(45deg);
}
.mblDomButtonRedCircleArrow > div > div > div > div {
position: absolute;
top: 1px;
left: 6px;
width: 3px;
height: 8px;
margin: 0px;
font-size: 1px;
background-color: white;
}
|