-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (101 loc) · 2.21 KB
/
style.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
#root {
transform: scale(0.95);
transform-origin: top center;
width: 100%;
margin: 0 auto;
height: auto;
overflow: hidden;
background-color: #fef4e8 !important;
}
body {
background-color: #fef4e8 !important;
}
.gradio-container {
background-color: #fef4e8 !important;
}
#my-title {
text-align: center;
padding: 0px;
border-radius: 8px;
color: #5d5d5d !important;
/* Updated text color */
font-size: 1.8em;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
#description {
text-align: center;
color: #555;
font-size: 1.1em;
margin-bottom: 0;
}
#chatbot {
height: calc(100vh - 270px) !important;
overflow-y: scroll;
background-color: #f5f5f5;
border: 1px solid #e0e0e0;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
padding: 10px;
}
#recommendations {
height: calc(100vh - 270px) !important;
overflow-y: auto;
background-color: #fff;
padding: 15px;
border: 1px solid #e0e0e0;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
font-size: 1em;
line-height: 1.5;
}
#footer {
text-align: center;
color: #888;
font-size: 0.9em;
}
#showcase-heading {
margin: 0 0 1em 0;
padding: 3px 3px 3px 20px;
/* background-color: #e0e7ff; */
border-radius: 8px;
align-items: left;
font-family: Montserrat, ui-sans-serif, "system-ui", sans-serif !important;
}
.showcase {
margin-bottom: 10px;
border: 1px solid #e0e0e0;
padding: 10px;
border-radius: 8px;
display: flex;
align-items: center;
}
.showcase-img {
width: 80px;
height: 80px;
border-radius: 8px;
margin-right: 10px;
}
.showcase-title {
text-decoration: none;
color: #007bff;
}
.showcase-desc {
margin: 0;
color: #555;
}
.showcase-price {
margin: 5px 0 0 0;
/* Add slight spacing from the previous element */
color: #d17a22;
/* Warm orange color for the price */
font-weight: bold;
/* Emphasize the price */
}
.showcase-rating {
margin: 5px 0 0 0;
/* Add slight spacing */
color: #555;
/* Neutral gray for the rating text */
font-size: 0.9em;
/* Slightly smaller font size for secondary information */
}