forked from Technigo/js-project-recipe-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (43 loc) · 761 Bytes
/
style.css
File metadata and controls
50 lines (43 loc) · 761 Bytes
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
body {
font-family: system-ui, Arial, Helvetica, sans-serif;
background: #f8fbfd;
color: #333;
text-align: center;
padding: 40px;
font-size: 16px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
color: #333;
font-size: 52px;
}
input[type="text"] {
width: 100%;
font-size: 15px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
margin-bottom: 20px;
}
button {
background: #007bff;
border: none;
border-radius: 4px;
width: 100%;
font-size: 16px;
color: white;
font-weight: bold;
padding: 10px;
margin-top: 20px;
cursor: pointer;
}
button:hover {
background: #0056b3;
}
.recipe-info {
margin-top: 20px;
text-align: left;
}