blob: 96c07ceb3025b33701278a49356132885972a173 (
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
49
|
/* === Yellow Star ==*/
.mblDomButtonYellowStar {
position: relative;
width: 29px;
height: 29px;
}
.mblDomButtonYellowStar > div {
position: absolute;
width: 0px;
height: 0px;
border-style: solid;
border-color: #FFFF00 transparent transparent transparent;
top: 12px;
left: 3px;
border-width: 9px 12px 0px 12px;
-webkit-transform: rotate(0deg);
}
.mblDomButtonYellowStar > div > div {
position: absolute;
width: 24px;
height: 0px;
border-style: solid;
border-color: #CD853F;
border-width: 1px 0px 0px 0px;
top: -10px;
left: -12px;
}
.mblDomButtonYellowStar > div > div > div {
position: absolute;
width: 0px;
height: 0px;
border-style: solid;
border-color: #FFFF00 transparent transparent transparent;
top: 0px;
left: 0px;
border-width: 9px 12px 0px 12px;
-webkit-transform: rotate(72deg);
}
.mblDomButtonYellowStar > div > div > div > div {
position: absolute;
width: 0px;
height: 0px;
border-style: solid;
border-color: #FFFF00 transparent transparent transparent;
top: -10px;
left: -12px;
border-width: 9px 12px 0px 12px;
-webkit-transform: rotate(216deg);
}
|