-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (72 loc) · 1.31 KB
/
styles.css
File metadata and controls
85 lines (72 loc) · 1.31 KB
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 {
font-family: Arial, sans-serif;
margin: 20px;
text-align: center;
background-color: #f9f9f9;
}
h1 {
color: #333;
}
h2 {
margin-top: 20px;
color: #555;
}
input[type="text"], textarea {
width: 80%;
margin: 10px 0;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
}
textarea {
height: 100px;
}
button {
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
padding: 10px 15px;
cursor: pointer;
font-size: 16px;
margin: 5px;
}
button:hover {
background-color: #218838;
}
#searchInput {
width: 80%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 20px;
}
#recipeList {
list-style-type: none;
padding: 0;
margin: 0;
}
#recipeList li {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
margin: 10px 0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#recipeList h3 {
margin: 0;
color: #333;
}
#recipeList p {
margin: 5px 0;
color: #666;
}
#recipeList button {
background-color: #dc3545;
}
#recipeList button:hover {
background-color: #c82333;
}