-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (87 loc) · 1.17 KB
/
style.css
File metadata and controls
108 lines (87 loc) · 1.17 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
font-family: sans-serif;
padding: 20px;
}
h1,
h2,
p {
text-align: center;
}
h1,
h2 {
font-weight: 900;
}
h1 {
margin-bottom: 15px;
margin-top: 0;
font-size: 40px;
}
h2 {
font-size: 30px;
}
a {
color: black;
}
.established {
font-style: italic;
}
.menu {
background: burlywood;
width: 80%;
margin: 0 auto;
padding: 20px;
max-width: 500px;
}
.bottom-line {
margin-top: 25px;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
h1,
h2 {
font-family: Impact, serif;
}
hr{
height: 5px;
border-color: brown;
background-color: brown;
}
.item {
display: flex;
justify-content: space-between;
}
.item p {
display: inline-block;
margin-top: 5px;
margin-bottom: 5px;
font-size: 18px;
}
.flavor,
.desert {
text-align: left;
width: 75%;
}
/* FOOTER */
footer {
font-size: 14px;
}
.address {
margin-bottom: 5px;
}
.price {
text-align: right;
width: 25%;
}
a:visited {
color: black;
}
a:hover {
color: brown;
}
a:active {
color: brown;
}