blob: 388ce24b03f0bcefa42b913ad000579442786767 (
plain)
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
|
body {
background: #ffffff;
margin: 3rem;
font-family: Georgia, 'Times New Roman', serif;
color: #352a2e;
}
.container {
max-width: 76rem;
margin: 0 auto;
}
.content {
display: flex;
gap: 2rem;
}
.aside {
width: 10rem;
}
.aside-content {
position: sticky;
top: 1rem;
}
.list {
display: flex;
flex-wrap: wrap;
gap: 2rem;
margin-bottom: 1rem;
}
.tile {
display: block;
width: 12.5rem;
}
.tile h2 {
font-size: 1rem;
margin-bottom: 0.5rem;
margin-top: 0;
}
.tile img {
width: 100%;
height: 12.5rem;
object-fit: cover;
object-position: center;
}
.tile .price {
font-weight: 500;
margin-bottom: 0.25rem;
}
.paginator-numbers {
width: 100%;
}
.paginator-numbers a {
text-decoration: none;
}
.paginator {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.paginator a {
color: blue;
}
.paginator-active {
font-weight: bold;
text-decoration: none;
pointer-events: none;
}
.logo {
margin-bottom: 2rem;
width: 10rem;
}
.form input {
margin-bottom: 0.5rem;
width: 100%;
}
.form button {
width: 100%;
}
.site-icon {
display: flex;
gap: 0.5rem;
align-items: center;
margin: 0.5rem 0 0.375rem;
text-decoration: none;
font-size: 0.75rem;
}
.site-icon img {
height: 24px;
width: auto;
object-fit: contain;
}
|