-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
58 lines (44 loc) · 827 Bytes
/
index.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
.elm-rater {
display: inline-block;
cursor: pointer;
}
.elm-rater--read-only {
cursor: default;
}
.elm-rater--disabled {
cursor: default;
opacity: 0.5;
}
.elm-rater__symbols {
display: flex;
}
.elm-rater--horizontal .elm-rater__symbols {
flex-direction: row;
}
.elm-rater--horizontal-reverse .elm-rater__symbols {
flex-direction: row-reverse;
}
.elm-rater--vertical .elm-rater__symbols {
flex-direction: column;
}
.elm-rater--vertical-reverse .elm-rater__symbols {
flex-direction: column-reverse;
}
.elm-rater__symbol {
display: inline-block;
}
/* Star */
.elm-rater__star {
font-size: 48px;
color: orange;
}
/* Heart */
.elm-rater__heart {
font-size: 32px;
}
.elm-rater__symbol--empty .elm-rater__heart {
color: black;
}
.elm-rater__symbol--full .elm-rater__heart {
color: red;
}