-
Notifications
You must be signed in to change notification settings - Fork 1
/
contentmanager.css
141 lines (120 loc) · 2.39 KB
/
contentmanager.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
.movie-item, .book-item {
display: flex;
height: 200px;
background-color: #F6F6F6;
margin: 5px 0;
padding: 0;
align-items: center;
}
.movie-img, .book-img {
height: 200px;
width: auto;
}
.movie-info, .book-info {
height: 200px;
overflow-y: auto;
flex: 1;
padding: 10px;
}
.movie-info .movie-name,
.book-info .book-title {
margin: 0!important;
}
.movie-info > span,
.book-info > span {
display: block;
margin: 0;
}
.movie-info .movie-rating .rating,
.book-info .book-rating .rating {
display: inline-block;
}
.movie-info .movie-rating .rating .stars-outer,
.book-info .book-rating .rating .stars-outer{
position: relative;
display: inline-block;
unicode-bidi: bidi-override;
direction: ltr;
font-size: 18px;
line-height: 1;
color: #ccc;
}
.movie-info .movie-rating .rating .stars-outer::before,
.movie-info .movie-rating .rating .stars-inner::before,
.book-info .book-rating .rating .stars-outer::before,
.book-info .book-rating .rating .stars-inner::before{
content: "\2605\2605\2605\2605\2605";
}
.movie-info .movie-rating .rating .stars-outer .stars-inner,
.book-info .book-rating .rating .stars-outer .stars-inner{
position: absolute;
top: 0;
left: 0;
white-space: nowrap;
overflow: hidden;
color: #FF8800;
}
.good-list {
flex-wrap: wrap;
justify-content: space-evenly;
}
.good-list.good-list-single {
justify-content: flex-start;
}
.good-list, .good-item {
display: flex;
align-items: center;
}
.good-list {
padding: 5px 0;
}
.good-item {
min-width: 280px;
flex: 1;
position: relative;
justify-content: center;
background: #F6F6F6;
padding: 50px 0 0;
flex-direction: column;
margin-top: 5px;
margin-bottom: 5px;
}
.good-img {
text-align: center;
}
.good-img img {
height: 120px;
width: auto;
max-width: 100%;
}
.good-meta {
font-size: 14px;
padding-bottom: 10px;
color: rgba(0, 0, 0, 0.8);
margin-top: 40px;
line-height: 1.4;
width: 92%;
}
.good-brand {
color: rgba(0, 0, 0, 0.55);
}
.good-name {
display: flex;
align-items: center;
}
.good-price {
margin-left: auto;
font-size: 12px;
}
@media (max-width: 800px) {
.good-item {
width: 48%;
min-width: 48%;
}
}
@media (max-width: 650px) {
.good-item {
width: 100%;
min-width: 100%;
}
}