-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.less
70 lines (66 loc) · 1.31 KB
/
stylesheet.less
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
body {
padding-top: 50px;
}
@media (min-width: 768px) {
.container {
max-width: 768px;
}
}
.rating {
unicode-bidi:bidi-override;
direction:rtl;
font-size:30px;
span.star{
font-family: FontAwesome;
font-weight:normal;
font-style:normal;
display:inline-block;
&:hover{cursor:pointer;}
&:before{
content:"\f006";
padding-right:5px;
color:#999999;
}
&:hover:before,&:hover~span.star:before{
content:"\f005";
color:#e3cf7a;
}
}
.labels {
line-height: 0;
}
label {
visibility: hidden;
color: #999999;
font-size: 12pt;
font-weight: normal;
direction: ltr;
margin: 0 15px 0 15px;
}
&:hover label {
visibility: visible;
}
}
@media (max-width: 480px) {
.rating {
margin: 0 -5px;
span.star {
margin: -5px;
font-size: 24px;
}
}
}
.annotation_progress {
float: right;
width: 150px;
margin: 20px 14px 0;
&:hover a { display: inherit; }
a {
display: none;
color: #aaa;
float: right;
text-decoration: none;
margin: 0 3px 0;
&:hover { text-decoration: underline; }
}
}