-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patha.css
44 lines (35 loc) · 749 Bytes
/
a.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
/* azad card stylying */
.cards-wrapper{
display: flex;
justify-content: center;
align-items: center;
}
.card{
border: none;
cursor: pointer;
}
.card-image{
height: 100%;
width: 200px;
margin: 0 20px 10px 0px;
padding: 0;
transition: transform 0.5s ease-in-out;
}
.card-image:hover {
transform: scale(1.1);
}
.card-body{
padding-top: 0;
}
.checked {
color: orange;
}
.card-offerButton{
padding: 10px;
}
.card-body-title{
color: rgb(56, 22, 159);
}
.card-body-title:hover{
color: rgb(216, 2, 2);
}