-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
executable file
·51 lines (43 loc) · 780 Bytes
/
style1.css
File metadata and controls
executable file
·51 lines (43 loc) · 780 Bytes
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
.container {
padding: 40px;
margin: 0 auto;
max-width: 1000px;
text-align: center;
margin-right: 0;
padding-right: 0;
}
#itemsList {
padding-inline-start: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-gap: 20px;
}
#searchBar {
width: 100%;
height: 32px;
border-radius: 3px;
border: 1px solid #eaeaea;
padding: 5px 10px;
font-size: 12px;
}
#searchWrapper {
padding-top: 89px;
padding-bottom: 100px;
position: sticky;
top:0px;
z-index: 1;
}
#searchWrapper::after {
content: '🔍';
position: absolute;
top: 89px;
right: 15px;
}
.card:hover{
transform: scale(1.1);
}
.scroll{
position: fixed;
right: 10px;
bottom: 10px;
}