-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
67 lines (62 loc) · 1.12 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
63
64
65
66
67
* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
}
body {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
background-color: #f8dd74;
}
/**************** Navbar Styles ****************/
#navbar-font a {
font-weight: bold;
font-size: 1.2em;
color: #3b2d64;
}
.nav-logo img {
width: 120px;
}
/**************** Meal Search (Input + Button) Styles ****************/
#meal-input {
height: 6vh;
border: none;
border-radius: 10px 0 0 10px;
}
#meal-submit {
width: 12vh;
height: 6vh;
border: none;
color: #ffffff;
background-color: #3b2d64;
border-radius: 0 10px 10px 0;
}
#meal-submit:hover {
color: #f8dd74;
}
/**************** Meal Found Or Not ****************/
#no-meal-found {
color: #3b2d64;
font-weight: bolder;
}
/**************** Searched Meal And Meal Details Styles ****************/
.cursor {
cursor: pointer;
}
.meal-details-div img {
width: 100%;
border-radius: 1em 1em 0 0;
}
#meal-details img {
width: 100%;
height: 40vh;
object-fit: cover;
}
#meal-details h2 {
color: #3b2d64;
font-weight: bold;
}
#meal-details p {
font-weight: 500;
margin-bottom: 0;
}