-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
128 lines (108 loc) · 1.8 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
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
@tailwind base;
@tailwind components;
@tailwind utilities;
.header {
border: 2px solid red;
display: flex;
justify-content: space-between;
}
.app-logo {
width: 150%;
height: 170px;
}
.cart-logo {
width: 50px;
vertical-align: middle;
}
.nav-items {
display: flex;
align-items: center;
list-style-type: none;
}
.nav-items > li {
padding: 10px;
margin: 10px;
font-size: large;
display: ruby;
}
.body {
margin: 10px;
}
.res-filter {
width: 20%;
height: 30px;
font-size: medium;
cursor: pointer;
background-color: ghostwhite;
border: 1px solid black;
margin: 0px 10px;
}
.filter-btn:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cards {
display: flex;
flex-wrap: wrap;
}
.card {
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
width: 300px;
margin: 20px;
}
.card:hover {
border: 1px solid rgb(255, 174, 0);
box-shadow: 0px 4px 10px rgb(241, 134, 12);
cursor: pointer;
}
.card-img {
width: 100%;
display: block;
}
.card-content {
padding: 15px;
}
.card-content > ul {
display: flex;
list-style-type: none;
align-items: center;
}
.card-content > ul > li {
display: flex;
list-style-type: none;
margin: 5px;
}
.footer {
background-color: rgb(209, 0, 0);
color: white;
display: flex;
justify-content: space-between;
position: relative;
}
.shimmer-card {
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
width: 300px;
margin: 20px;
height: 500px;
}
.user-card {
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
margin-bottom: 10px;
display: flex;
}
.user-card > ul {
list-style: none;
}
.user-card > h3 {
margin: 10px;
}
.user-card > img {
height: 200px;
}