-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
97 lines (79 loc) · 1.34 KB
/
main.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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
body {
font-family: system-ui,
-apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif;
}
.topbar {
background: rgb(254, 207, 80);
padding: 0 10px;
width: 100%;
height: 60px;
line-height: 60px;
margin-right: 16px;
font-size: 24px;
font-weight: bold;
color: rgb(62, 57, 107);
}
.wrapper {
display: flex;
height: calc(100% - 60px);
}
.left {
border-right: 1px solid #eee;
padding: 20px;
min-width: 320px;
}
.right {
flex-grow: 1;
padding: 20px;
}
.guide {
margin-bottom: 15px;
}
.ais-Hits {
display: flex;
flex-wrap: wrap;
margin-top: 20px;
}
.ais-Hits-item em {
font-style: normal;
background-color: rgba(254, 207, 80, .3);
}
.ais-Hits-item .image {
text-align: center;
}
.ais-Hits-item .name {
margin-top: 15px;
}
.ais-SearchBox-form {
max-width: 500px;
}
.ais-SearchBox-input {
padding-top: 10px;
padding-bottom: 10px;
color: #3a4570;
}
.ais-Pagination {
margin-top: 20px;
}
#price .ais-Panel-body {
max-width: 92%;
margin-left: 4%;
}
#refinement-lists > div {
margin-top: 20px;
}
#refinement-lists > div:nth-child(1) {
margin-top: 50px;
}