-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
62 lines (55 loc) · 1.15 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@import "https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css";
#recipeResults > div {
width: 300px;
height: 300px;
margin-top: 30px;
background-color: #fff;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
display: flex;
flex-direction: column;
align-items: center;
}
#recipeResults > div > .cardUnderSection {
display: flex;
justify-content: space-between;
align-items: center;
height: 25%;
width: 90%;
}
#recipeResults > div > .cardUnderSection > .saveButton {
width: 70px;
padding: 0.4rem;
font-weight: 600;
border: none;
background-color: rgb(55, 110, 230);
color: white;
border-radius: 5px;
cursor: pointer;
}
#recipeResults > div > .cardUnderSection > h2 {
font-weight: 700;
}
#recipeResults {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}
#searchButton {
height: 40px;
width: 60px;
}
.modal-content {
background: white;
padding: 20px;
text-align: left;
width: 50%;
margin: 0 auto;
max-height: 80vh;
overflow: auto;
border-radius: 6px;
}
.modal-close {
top: 10px;
right: 10px;
}