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
|
/*******************************************************************************
* Copyright (c) 2017 Kumar Rishabh and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution, and is available at
* http://www.apache.org/licenses/LICENSE-2.0
*******************************************************************************/
.card-shadow-custom {
box-shadow: 0 2px 3px 0 rgba(0,0,0,0.50);
border-bottom: 2px solid #8B19A2;
}
.row-custom {
display: flex;
flex-flow: row wrap;
width: 100%;
margin: 1em 1em 1em 1em;
padding-right: 20px;
}
.card-title-div-custom {
margin: 0.5em 0 0.5em 0;
text-align: left;
display: inline-block;
}
.card-title-span-custom {
margin: 0 0 0 2em;
display: inline-block;
}
.card-title-div-custom-right {
margin: 0.5em 0em 0.5em 0;
text-align: right;
display: inline-block;
}
.card-image-picture-custom {
margin: auto;
}
.collection .collection-item.active {
background-color: rgb(255,245,114);
text-decoration: none;
transition: none;
}
.collection a.collection-item:not(.active):hover {
background-color: rgb(255,245,114);
text-decoration: none;
transition: none;
}
.collection .collection-item {
padding: 1px 25px;
border-bottom: 0px;
transition: none;
}
.chip > a {
display: block;
text-decoration: none;
text-align: center;
display:inline-block;
font-size:13px;
font-weight:500;
color:rgba(0, 0, 0, 0.6) !important;
margin-right: 15px !important;
margin-left: 15px !important;
text-transform: none !important;
}
.chip > a:hover {
background-color: transparent;
text-decoration: none;
transition: none;
}
a.a-custom-more {
display: block;
text-decoration: none;
text-align: center;
display:inline-block;
font-size: 20px;
font-weight:500;
color:rgba(0, 0, 0, 0.6) !important;
margin-right: 15px !important;
text-transform: none !important;
}
a.a-custom-more:hover {
background-color: transparent;
}
.collection-custom {
margin: 0em 0em 0em 1em;
}
.card .row .card-action-custom {
margin-left: 20px;
}
.rating {
color: rgb(253,225,109) !important;
}
.filled-stars .star i {
color: rgb(253,225,109) !important;
}
.glyphicon-star-empty {
color: rgb(221,221,221);
}
.star {
}
span.glyphicon.glyphicon-search.form-control-feedback,
div.form-group-custom i.material-icons {
top: 0.5em;
left: 16.0em;
cursor:pointer;
z-index: 30;
position: absolute;
}
.card-image-custom {
display: flex;
flex-flow: column wrap;
}
.img-size{
max-width:200px;
max-height:200px;
}
|