-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
89 lines (77 loc) · 1.46 KB
/
styles.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
.rmp-link {
color: grey;
}
.rmp-link:hover {
color: #4F2683;
}
.name-cell {
margin-bottom: 5px;
}
.rating {
}
.error {
color: red;
display: block;
}
.grade {
font-family: Tahoma, Geneva, sans-serif;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.hidden {
display: none;
}
.chevron::before {
margin-top: 1px;
margin-left: 4px;
cursor: pointer;
border-style: solid;
border-width: 0.25em 0.25em 0 0;
content: '';
display: inline-block;
height: 0.75em;
left: 0.25em;
position: relative;
top: 0.25em;
transform: rotate(-45deg);
vertical-align: top;
width: 0.75em;
border-color: #4F2683; //UWO purple
/*box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
}
.chevron.down-chevron:before {
top: 0;
transform: rotate(135deg);
}
.loader {
border: 4px solid #f3f3f3; /* Light grey */
border-top: 4px solid #4F2683; /* UWO Purple */
border-radius: 50%;
width: 24px;
height: 24px;
animation: spin 2s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.rating-header {
font-weight: bold;
}
.rating-container {
margin: 1px;
}
.ratings-count {
width: 50%;
color: white;
text-align: center;
background-color: #4F2683;
border-radius: 50%;
}
.rating-bar {
color: white;
background-color: #4F2683;
text-align: center;
}