-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
80 lines (76 loc) · 1.12 KB
/
index.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
* {
font-family: "Fira Sans";
margin: unset;
padding: unset;
}
body {
background: #d8d4c5;
}
.header {
display: flex;
justify-content: space-between;
background: #cbb594;
position: sticky;
top: 0;
}
.logo {
width: 100px;
}
.nav-items {
padding: 0 20px;
}
.nav-items > ul{
font-size: 24px;
display: flex;
list-style-type: none;
}
.nav-items > ul > li {
padding: 10px;
margin: 10px;
}
.search {
padding: 10px 0;
}
.res-container {
display: flex;
flex-wrap: wrap;
}
.res-card {
width: 200px;
padding: 5px;
margin: 5px;
overflow: hidden;
}
.res-card:hover {
cursor: pointer;
background-color: #e0e0e0 !important;
}
.res-card:hover .res-logo {
scale: 1.1;
}
.res-logo {
width: 100%;
height: 200px;
object-fit: cover;
transition: scale 1s ease;
}
.shimmer-container {
display: flex;
flex-wrap: wrap;
}
.shimmer-card {
margin: 20px;
width: 200px;
height: 400px;
background: #f0f0f0;
}
.login {
padding: 0 20px;
cursor: pointer;
}
.filter {
display: flex;
}
.filter-btn {
margin: 10px;
}