-
Notifications
You must be signed in to change notification settings - Fork 0
/
favourite.css
66 lines (56 loc) · 1.21 KB
/
favourite.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
#favdiv{
width: max-content;
margin: auto;
margin-top: 50px;
}
#tag{
text-align: center;
color: palevioletred;
}
#favdiv>div{
margin-bottom: 25px;
border: 0px solid;
/* width:max-content; */
height: auto;
padding: 10px;
border-radius: 10px;
}
#favdiv>div:hover{
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
#favdiv>div>h1{
margin-top: -10px;
}
#favdiv>div>button{
/* width: 40%; */
height: 50px;
border-radius: 25px;
}
#favdiv>div>button:nth-child(4){
width: 150px;
height: 50px;
border-radius: 50px;
background-color: rgb(228, 54, 83);
border: none;
color: white;
font-size: 20px;
font-weight: bolder;
margin-right: 50px;
cursor: pointer;
}
#favdiv>div>button:nth-child(4):hover{
background-color: red;
}
#favdiv>div>button:last-child{
width: 100px;
height: 50px;
border-radius: 50px;
border: none;
background-color: black;
color: white;
cursor: pointer;
}
#favdiv>div>button:last-child:hover{
background-color: gray;
}