-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
182 lines (156 loc) · 2.85 KB
/
style.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*Background: #F2F1E8
Text: #131511
Inline Link: #968772
Inline Link (Hover): #967343
Navigation Background: #FFFFFF
Navigation Text: #2B2F26
Navigation Text (Hover): #CD5D67
Navigation Text (Active) #968772
Button Background: #968772
Button Background (Hover): #967343
Button Text: #F2F1E8
Button Text (Hover): #FFFFFF
Input Border Bottom: #968772
Input Border Bottom (Focus): #967343*/
*{
font-family: 'Merriweather', 'Roboto', sans-serif;
color: #131511;
}
header{
display: flex;
position: fixed;
top: 0;
width: 100%;
margin-top: 0;
margin-bottom: 100px;
}
.logonav{
margin: 0 auto;
background-color: white;
}
#logo{
margin: 0 auto;
background-color: white;
padding-top: 25px;
}
.main-navigation{
background: #FFFFFF;
width: 100%;
text-align: center;
text-transform: uppercase;
justify-content: space-between;
margin: 0 auto;
padding-top: 25px;
}
.main-navigation a{
padding: 40px;
}
a:hover{
color: #967343;
}
a:active{
color: #968772;
}
.maincontent{
background: #F2F1E8;
padding-top: 25px;
}
.section2{
text-align: center;
font-size: 30px;
padding-top: 10px;
}
.flexboxcontainer{
display: flex;
flex-wrap: wrap;
justify-content:space-around;
align-content: space-between;
margin: 0 auto;
}
h4{
background: #273827;
}
h4 span{
color: white;
}
.row1{
display: flex;
margin: 15px;
width: 100%;
height: 300px;
}
.row2{
display: flex;
width: 100%;
margin: 15px;
height: 300px;
}
#tile1{
width: 60%;
margin-right: 20px;
background-image: url("optimized/product-1.jpg");
background-position:center;
background-size: cover;
display: flex;
align-items: flex-end;
}
#tile2{
width: 20%;
margin-right: 20px;
background-image: url("optimized/product-2.jpg");
background-position:center;
background-size: cover;
display: flex;
align-items: flex-end;
}
#tile3{
width: 20%;
background-image: url("optimized/product-3.jpg");
background-position:center;
background-size: cover;
display: flex;
align-items: flex-end;
}
#tile4{
width: 20%;
margin-right: 20px;
background-image: url("optimized/product-4.jpg");
background-position:center;
background-size: cover;
display: flex;
align-items: flex-end;
}
#tile5{
width: 20%;
margin-right: 20px;
background-image: url("optimized/product-5.jpg");
background-position:center;
background-size: cover;
display: flex;
align-items: flex-end;
}
#tile6{
width: 40%;
margin-right: 20px;
background-image: url("optimized/product-6.jpg");
background-position:center;
background-size: cover;
display: flex;
align-items: flex-end;
}
#tile7{
width: 20%;
background-image: url("optimized/product-7.jpg");
background-position:center;
background-size: cover;
display: flex;
align-items: flex-end;
}
footer{
text-align: left;
background: #273827;
padding: 25px;
}
footer p{
color: white;
}