-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
57 lines (56 loc) · 955 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
.card {
display: flex;
flex-direction: column;
border: 1px solid #ccc;
padding: 10px;
border-radius: 10px;
width: 300px;
margin: 30px 0;
}
.recipecards {
display: flex;
flex-direction: row;
flex-wrap: wrap;
flex-grow: 30%;
justify-content: space-evenly;
margin: 0 30px;
}
.card-title {
font-size: 16px;
overflow: auto;
}
.card button {
margin-top: 10px;
padding: 10px;
background-color: #c07373;
color: white;
border: none;
border-radius: 6px;
width: 100%;
}
.card button:hover {
background-color: #460000;
}
nav {
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
background-color: #f2f2f2;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
box-shadow: 1px 1px 5px #ccc;
gap: 40px;
}
nav a {
text-decoration: none;
color: #333;
}
nav a:hover {
color: #000000;
font-weight: bold;
}