-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.css
executable file
·240 lines (190 loc) · 3.1 KB
/
layout.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
* {
margin: 0px auto;
padding: 0px;
}
body {
font-family: Arial;
}
#container {
width:1000px;
}
header {
width:1000px;
padding:5px 5px 35px 0px;
}
#main_title {
color:#2C9C52;
float:left;
clear:both;
font-size:60px;
padding: 10px 0px 10px 0px;
}
#tel {
margin-left:8px;
color:#2C9C52;
font-weight:bold;
font-size:14px;
clear:both;
}
#logo {
float:left;
padding: 10px 0px 0px 175px;
}
nav {
width:990px;
border-bottom:10px solid #444;
font-size:20px;
padding:15px 0px 10px 0px;
margin:25px 0px 0px 9px;
}
section {
float:left;
width:720px;
margin-left:21px;
}
article{
padding:3px 25px 25px 5px;
margin:35px 0px 12px 0px;
}
.product_title {
margin-top:17px;
font-size:30px;
}
.product_pic {
width:150px;
height:229px;
border:1px dashed #ccc;
float:left;
clear:both;
text-align: center;
}
.pic {
padding:25px 25px 10px 45px;
}
.product_description {
width:485px;
height:430px;
border:1px solid #ccc;
float:right;
padding: 19px 21px 26px 10px;
}
.product_description p {
font-size:12px;
}
h3 {
color:#2C9C52;
font-size:20px;
}
aside {
width: 210px;
float: right;
padding:7px 1px 3px 5px;
margin:20px 0px 0px 0px;
border:3px solid #444;
border-radius: 10px 10px 10px 10px;
text-align:center;
}
#opening_times {
padding:9px 0px 0px 22px;
}
#opening_times td {
width:130px;
color:#444;
font-size:13px;
font-weight:bold;
text-align:left;
padding:10px 0px 7px 0px;
}
#contact_form {
width: 370px;
border:3px solid #444;
border-radius:10px;
float:left;
margin-top:20px;
padding-top:12px;
}
form {
width:370px;
margin: 0px auto;
}
label {
display:block;
margin:15px 0px 5px 20px;
}
input {
width:330px;
height:21px;
margin-left:20px;
}
textarea {
width:330px;
height:190px;
margin-left:20px;
}
fieldset {
border:none;
padding-bottom:20px;
}
labelone {
margin-top:10px;
}
.btn {
width:155px;
height:30px;
}
form h3 {
font-size:25px;
margin: 0px 0px 18px 18px;
}
#contact_info {
float:right;
margin:20px 0px 0px 0px;
width:260px;
padding:15px;
border:3px solid #444;
border-radius: 10px 10px 10px 10px;
}
.offer_header {
font-size:30px;
}
#offer4 {
border:2px solid white;
border-radius: 10px 10px 0px 0px;
}
#offer5 {
margin-left:12px;
border:2px solid white;
border-radius: 10px 10px 0px 0px;
}
.pay_monthly_table {
width:500px;
float:left;
background:#2C9C52;
color:white;
border:3px solid #444;
border-radius:5px 5px 0px 0px;
}
.pay_monthly_table th{
padding: 2px 2px 2px 0px;
border:2px solid #444;
border-radius:9px 9px 0px 0px;
font-size:12px;
text-align:center;
font-weight:bold;
}
.pay_monthly_table td{
width:110px;
padding:5px 0px 5px 0px;
border:2px dotted #444;
font-size:12px;
text-align:center;
}
footer {
width:990px;
clear:both;
border:7px solid #444;
border-radius: 5px 5px 0px 0px;
padding:12px 0px 12px 0px;
margin: 0px auto;
text-align:center;
}