-
Notifications
You must be signed in to change notification settings - Fork 0
/
fruitcombos.css
45 lines (41 loc) · 892 Bytes
/
fruitcombos.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
#fruitcombo{
margin: auto;
width: 95%;
height: auto;
/* border: 2px solid black; */
display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(auto,auto);
gap: 10px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#fruitcombo>div>img{
width: 100%;
border-radius: 20px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#fruitcombo>div>button{
background-color:#437111 ;
color: #ebf0e6;
width: 99%;
height: 50px;
font-size: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
/* #fruitsdiv>div>button :hover {
color: red;
} */
#fruitcombo>div{
display: flex;
flex-direction: column;
gap: 5px;
justify-content: center;
align-items: center;
align-content: center;
/* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
/* border-radius: 20px; */
}
/* p{
border: 2px solid black;
} */