-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (48 loc) · 864 Bytes
/
style.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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
#main{
margin: 10px;
display: flex;
gap: 50px;
justify-content: center;
flex-wrap: wrap;
/* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}
.item{
box-shadow: rgb(157, 157, 184) 5px 7px 29px 5px;
}
.item:hover{
box-shadow: rgb(3, 128, 245) 5px 7px 29px 5px;
transition: 1.1;
}
.item img{
filter: drop-shadow(10px 10px 5px #d3d3d3);
padding-top: 20px;
height: 35vh;
border-radius: 5px;
}
.card img:hover{
scale: 1.1;
transition: 1.1s;
}
.btn1{
background-color: blue;
color: #fff;
border: none;
border-radius: 20px;
margin-top: 10px;
padding: 10px 20px;
}
.btn1:hover{
background-color: green;
transition: 1.1s;
}
.name{
padding-top: 20px;
}
.card{
border-radius: 10px;
}