-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
148 lines (126 loc) · 1.99 KB
/
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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
html{
font-family: verdana;
}
#logo {
text-align: center;
font-weight: bold;
color: #000;
display: block;
text-decoration: none;
}
body {
background-color: #FFA47D;
padding: 0px;
margin: 0px;
}
.who-are-we {
text-align: center;
}
.main-image {
width: 100%;
}
nav {
margin: 0px;
padding-left: 1px;
padding-right: 1px;
width: 100%;
background-color: #E5AB92;
position: fixed;
z-index: 1;
overflow: auto;
}
.navbar ul {
list-style-type: none;
margin: 0px;
}
.navbar li {
float: left;
width: 25%;
}
.navbar li a {
display: block;
color: #000;
text-align: center;
padding: 16px 16px;
text-decoration: none;
}
.navbar li a.active {
background-color: #E5AB92;
color: white;
}
.navbar li a:hover:not(.active) {
background-color: #555;
color: white;
}
.image {
width: 100%; /* for IE 6 */
z-index: -1;
}
.about h2 {
position: absolute;
top: 200px;
left: 0;
width: 100%;
z-index: 0;
}
.about h2 span {
display: block;
color: white;
font: bold 24px/45px Arial,Helvetica, Sans-Serif;
letter-spacing: -1px;
background: rgb(0, 0, 0); /* fallback color */
background: rgba(0, 0, 0, 0.7);
padding: 10px;
}
.about h2 span.spacer {
padding: 0 5px;
}
.recipe-body{
padding-top: 60px;
text-align: center;
margin: 0 auto;
width: 50%;
}
.recipe-body h1{
z-index: 1;
margin: 0px;
}
.recipe-body p{
padding: 5px;
}
.classic-image{
width: 600px;
border: 3px solid white;
border-radius: 10%;
padding: 0px;
}
.chocolate-image{
width: 600px;
border: 3px solid white;
border-radius: 10%;
padding: 0px;
}
.crop{
width: 600px;
height: 500px;
overflow: hidden;
border: 3px solid white;
border-radius: 10%;
}
.crop img{
width: 600px;
margin-bottom: -10px;
}
.recipes{
text-align: left;
padding: 10px;
}
.events-content h1{
padding-top: 80px;
padding-left: 50px;
margin: 0px;
}
.events-content p{
background-color: papayawhip;
padding: 10px;
}