-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
143 lines (124 loc) · 2.72 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
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
142
143
body, h1, h2, ul {
margin: 0;
padding: 0;
}
/* Center the container both horizontally and vertically */
.center-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
overflow-y: auto;
}
/* Style the search box */
.search-box {
text-align: center;
position: sticky;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
#search-input {
padding: 10px;
width: 60%;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
margin-bottom: 10px;
}
#search-button {
padding: 10px 20px;
background-color: #0099ff;
color: #fff;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}
/* Add styling for the top bar */
.top-bar {
background-color: #0099ff; /* Background color for the top bar */
color: #fff; /* Text color */
padding: 10px 0; /* Add padding to top and bottom */
text-align: center;
}
/* Style the user information container within the top bar */
.user-info {
display: flex;
justify-content: center;
align-items: center;
max-width: 800px; /* Adjust the maximum width as needed */
margin: 0 auto; /* Center the top bar horizontally */
}
/* Style the user greeting */
#logged-in-user {
font-size: 16px;
font-weight: bold;
margin-right: 10px;
}
.category-pills {
display: flex;
flex-wrap: wrap;
gap: 8px; /* Adjust the spacing between pills */
justify-content: center;
align-items: center;
}
.category-pills span {
display: inline-block;
padding: 8px 12px;
background-color: #0099ff;
color: #fff;
border-radius: 20px; /* Rounded corners for pills */
font-weight: bold;
cursor: pointer;
transition: background-color 0.2s ease;
}
.category-pills span:hover {
background-color: #0077cc;
}
.categorySearch-pills {
display: flex;
flex-wrap: wrap;
gap: 8px; /* Adjust the spacing between pills */
justify-content: center;
align-items: center;
}
.categorySearch-pills span {
display: inline-block;
padding: 8px 12px;
background-color: #8a00ff;
color: #fff;
border-radius: 20px; /* Rounded corners for pills */
font-weight: bold;
cursor: pointer;
transition: background-color 0.2s ease;
}
.categorySearch-pills span:hover {
background-color: #0077cc;
}
#content {
max-height: 750px; /* Adjust the maximum height as needed */
overflow-y: auto; /* Enable vertical scrolling if content exceeds the maximum height */
padding: 10px; /* Add padding to the content area */
}
.table tbody tr {
margin-bottom: 20px; /* Adjust the spacing between table rows */
}
.box-art-scroller {
width: 1200px;
height: 250px;
white-space: nowrap;
position: relative;
overflow-x: scroll;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
.box-art-scroller div {
width: 15.5%;
float: none;
height: 90%;
display: inline-block;
zoom: 1;
}