-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (59 loc) · 1.22 KB
/
style.css
File metadata and controls
67 lines (59 loc) · 1.22 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
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
background: #fdf6e3;
padding: 40px;
text-align: center;
}
h1 {
color: #a020f0;
margin-bottom: 30px;
}
.input-container {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 30px;
flex-wrap: wrap;
}
input[type="text"], select {
padding: 12px 15px;
font-size: 1em;
border-radius: 8px;
border: 1px solid #ccc;
min-width: 200px;
}
button {
padding: 12px 25px;
font-size: 1.2em;
background-color: #a020f0;
color: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
min-width: 140px;
}
button:hover {
background-color: #7a0dbb;
}
#recipe {
background: #fff3cd;
padding: 25px;
border-radius: 12px;
max-width: 700px;
margin: 0 auto;
box-shadow: 2px 2px 12px rgba(160, 32, 240, 0.25);
text-align: left;
}
.recipe-image {
display: block;
max-width: 100%;
height: auto;
margin: 15px auto 25px auto;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h2 {
text-align: center;
color: #7a0dbb;
}