forked from Team-Pulsar/project-greenfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviewsStyle.css
116 lines (96 loc) · 1.52 KB
/
reviewsStyle.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* MAIN COMPONENT RATINGS & REVIEW */
.ratingsReviewContainer {
display: flex;
width: 80%;
min-height: 300px;
margin: 0 auto;
margin-top: 20px;
}
.ratingsBreakdown {
padding: 10px;
flex: 1;
}
.progress-label-left {
float: left;
margin-right: 1em;
text-decoration: underline;
}
.progress-label-left:hover {
color: lightgrey;
cursor: pointer;
}
.progress-label-right {
float: right;
margin-left: 1em;
}
.reviewsList {
flex: 2;
margin-left: 4em;
}
.remove-filter {
text-decoration: underline;
}
.remove-filter:hover {
color: lightslategray;
cursor: pointer;
}
.char-bar-filler {
background-color: 'lightgrey';
}
.char-bar-label {
display: flex;
justify-content: center;
}
.char-bar-label-left {
display: 'inline-block';
float: left;
}
.char-bar-label-right {
display: 'inline-block';
float: right;
}
.rating-bar-filler {
width: 100%;
background: grey;
}
.button-container {
display: flex;
justify-content: flex-start;
}
.more-reviews-btn {
margin-right: 5%;
border: 1px, solid, black;
}
.review-tile {
overflow-y: scroll;
max-height: 1000px;
}
#review-summary {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 60ch;
}
.response {
background: lightgrey;
height: 50px;
padding: 20px;
margin-bottom: 10px;
}
.helpful {
margin-top: 10px;
}
select {
border: none;
}
.sorting {
margin-top: 25px;
}
.add-help:hover {
color: lightslategray;
}
.char-select {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}