-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
108 lines (93 loc) · 1.58 KB
/
stylesheet.css
File metadata and controls
108 lines (93 loc) · 1.58 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
* {
font-family: monospace;
}
.topnav {
background-color:beige;
width: 100%;
text-align: left;
position: fixed;
top: 0;
height: 45px;
font-size: 30px;
}
.topnav a {
color: black;
padding: 20px;
text-decoration: none;
font-size: 20px;
}
.topnav a:hover {
color: rgb(164, 158, 158);
}
.topnav a.active {
color:tomato;
}
.title {
background-color: blanchedalmond;
width: fit-content;
height: fit-content;
margin-top: 50px;
padding: 10px;
border-radius: 15%;
}
.ingredients {
background-color:blanchedalmond;
width: fit-content;
padding: 10px;
margin: 5px;
line-height: 24px;
border-radius: 10%;
}
.instructions {
background-color:blanchedalmond;
width: fit-content;
padding: 10px;
margin: 5px;
line-height: 48px;
border-radius: 10%;
}
.photos {
padding-bottom: 50px;
}
#hero-text {
text-align: center;
font-size: 35px;
margin-top: 100px;
}
.home-content {
text-align: center;
font-size: 20px;
padding-top: 45px;
}
body {
background-color: whitesmoke;
}
footer {
position: fixed;
bottom: 0;
background-color: tomato;
width: 100%;
margin-top: 100px;
padding-left: 15px;
}
img {
width: 600px;
border-radius: 50%;
margin-left: auto;
margin-right: auto;
display: block;
padding-top: 45px;
padding-bottom: 75px;
}
table {
table-layout: fixed;
width: 50%;
border-collapse: collapse;
border: 3px solid black;
margin-top: 75px;
text-align: center;
font-size: 20px;
}
th, td {
border: 1px solid black;
}