-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (63 loc) · 1.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
/* background-color:#F06C4E; */
color: #000;
background-repeat: no-repeat;
background-size: 100%;
background-position: top;
}
a.navbar-brand {
width: 50%;
}
a {
text-decoration: none;
color: #000;
}
a:hover {
color: #F06C4E;
}
.nav-logo {
max-width: 28%;
}
.form-control {
background-color: #F8F7F5;
padding: 22px;
border: none;
color: #989898;
}
.btn {
border-radius: 0 6px 6px 0;
padding: 9px 20px;
}
.btn-privious {
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
}
.search-box {
position: relative;
}
.search-btn {
position: absolute;
top: 0;
right: 0;
height: 100%;
background-color: #F06C4E;
}
.single-result {
background: #F8F7F5;
border-radius: 15px;
}
.single-result:hover {
box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.3);
color: #F06C4E;
}
.ingredients {
list-style: none;
margin: 2rem 0;
padding: 0;
}
.ingredients li {
background: url(images/checkmark-square.png);
background-repeat: no-repeat;
padding-left: 3rem;
margin: 10px 0
}