浏览代码

Pre-git development branch upload

dev-v1.5
0xBedz 5 年前
父节点
当前提交
e9e18d702c
共有 11 个文件被更改,包括 637 次插入383 次删除
  1. 173
    210
      assets/css/main.css
  2. 二进制
      assets/imgs/20180319_180443.jpg
  3. 二进制
      assets/imgs/20180501_134032.jpg
  4. 二进制
      assets/imgs/20180917_145118.jpg
  5. 二进制
      assets/imgs/20181002_182140.jpg
  6. 二进制
      assets/imgs/20181102_092020.jpg
  7. 二进制
      assets/imgs/20181220_130251.jpg
  8. 二进制
      assets/imgs/22.jpg
  9. 1
    1
      assets/js/main.js
  10. 411
    0
      assets/logo.svg
  11. 52
    172
      index.html

+ 173
- 210
assets/css/main.css 查看文件

@@ -1,277 +1,271 @@
1
-@font-face {
2
-    font-family: 'oswald';
3
-	src: url('../fonts/Oswald-Regular.ttf');
4
-	/*			../fonts/SILOpenFontLicense.txt			*/
5
-}
6 1
 
7 2
 :root {
8
-	--nav-height: 65px;
3
+	--lm-color: #309d66;
4
+	--card-height: 550px;
9 5
 	--cool-looking-gradient: linear-gradient(to right, #3ad559 0%, #606dc2 100%);
10 6
 }
11 7
 
12 8
 html, body {
13 9
 	font-size: 13.5pt;
14
-	font-family: 'Oswald', sans-serif;
10
+	font-family: 'Roboto', sans-serif;
15 11
     margin: 0;
16 12
     height: 100%;
17
-    background-color: #e6e6e6;
13
+	background-color: #dfdfdf;
18 14
 }
19 15
 
20 16
 nav {
21 17
 	display: flex;
22 18
 	flex-direction: row;
23
-	justify-content: center;
24
-	position: fixed;
25
-	height: var(--nav-height);
26
-	background-color: white;
19
+	justify-content: start;
20
+	height: 100px;
27 21
 	width: 100%;
28
-	border-bottom: 5px solid transparent;
29
-	border-image: var(--cool-looking-gradient);
30
-	border-image-slice: 1;
22
+	border-bottom: 1px solid rgba(255,255,255,.15);
31 23
 	font-size: 22px;
32 24
 	user-select: none;
33 25
 	z-index: 1;
26
+	background: rgba(0,0,0,.6);
27
+	box-shadow: inset 0 -2px 5px rgba(0,0,0,.5);
34 28
 }
35 29
 
36 30
 nav .logo {
37
-	background-image: url("../imgs/logo.png");
38
-	background-repeat: no-repeat;
39
-	background-size: auto 100%;
40 31
 	height: 100%;
41 32
 	width: 300px;
42
-	margin-right: auto;
33
+	margin-left: 40px;
43 34
 }
44 35
 
45
-nav .blank {
46
-	width: 300px;
47
-	margin-left: auto;
48
-}
49 36
 
50 37
 nav .links {
38
+	margin-left: auto;
39
+	margin-right: 60px;
51 40
 	display: flex;
52 41
 	flex-direction: row;
53
-	justify-content: center;
42
+	justify-content: space-between;
43
+	width: 400px;
44
+
54 45
 }
55 46
 
56 47
 
57 48
 nav .links a {
58
-	display: flex;
59
-	justify-content: center;
60
-	align-items: center;
61
-	height: 100%;
62
-	margin: auto 10px auto 10px;
49
+	font-size: 18px;
50
+	font-weight: 700;
51
+	letter-spacing: normal;
52
+	line-height: 100px;
63 53
 	text-align: center;
64
-	color: #6d6b6b;
54
+	color: #ffffff;
65 55
 	text-decoration: none;
66
-	transition: color 10ms;
67
-	font-weight: 900;
56
+	transition: color 100ms;
57
+	position: relative;
68 58
 }
69 59
 
70
-nav a:hover {
71
-	color: black;
72
-	text-shadow: rgba(0, 0, 0, 0.1) 1px 0 5px;
60
+nav .links a:before, a:after {
61
+	content: "";
62
+	position: absolute;
63
+	bottom: 2px;
64
+	left: 0;
65
+	right: 0;
66
+	height: 2px;
67
+	background-color: #7df372;
73 68
 }
74 69
 
75
-footer {
76
-	height: 10px;
77
-	background-color: rgb(59, 59, 59);
78
-	width: 100%;
79
-	background-image: var(--cool-looking-gradient);
70
+nav .links a:before {
71
+	opacity: 0;
72
+	transform: translateY(-8px);
73
+	transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s;
80 74
 }
81 75
 
82
-#content {
83
-	display: flex;
84
-	padding-top: var(--nav-height);
85
-	flex-direction: column;
86
-	width: 100%;
76
+nav .links a:after {
77
+	opacity: 0;
78
+	transform: translateY(4px);
79
+	transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
87 80
 }
88 81
 
89
-#content #banner {
90
-	display: flex;
91
-	min-height: 450px;
92
-	margin-bottom: 30px;
93
-	justify-content: center;
94
-	align-items: center;
95
-	background-image: url('../imgs/banner.JPG');
96
-	background-repeat: no-repeat;
97
-	background-position: 0 -150px;
98
-	background-size: auto auto;
99
-	background-attachment: fixed;
82
+nav .links a:hover:before, a:hover:after, a:focus:before, a:focus:after {
83
+	opacity: 1;
84
+	transform: translateY(0);
100 85
 }
101 86
 
102
-#content #banner #bannerTxt {
103
-	margin-right: auto;
104
-	margin-left: 80px;
105
-	width: 500px;
106
-	font-size: 30px;
107
-	line-height: 1.3;
108
-	font-weight: 600;
109
-	color: white;
87
+nav .links a:hover:before, a:focus:before {
88
+	transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
110 89
 }
111 90
 
112
-#content #banner #quickInfo {
113
-	display: flex;
114
-	align-items: center;
115
-	flex-direction: column;
116
-	margin-right: 40px;
117
-	margin-left: auto;
118
-	width: 320px;
119
-	height: 340px;
120
-	font-size: 20px;
121
-	line-height: 1.15;
122
-	font-weight: 600;
123
-	color: white;
124
-	background-color: #000000a1;
125
-	border: 1px solid;
126
-	border-image-slice: 1;
127
-	border-image-source: linear-gradient(to left, #004abe, #1e6f07);
91
+nav .links a:hover:after, a:focus:after {
92
+	transition: transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s 0.2s;
128 93
 }
94
+  
129 95
 
130
-#content #banner #quickInfo span {
131
-	align-self: flex-start;
132
-	margin-left: 20px;
133
-}
134
-
135
-#content #banner #quickInfo span:first-child {
136
-	margin-top: 10px;
137
-}
138 96
 
139
-#content #banner #quickInfo p {
140
-	padding: 0;
141
-	margin: 10px;
142
-}
143
-
144
-#content .container {
97
+#wrapper{
98
+	height: 100%;
99
+	width: 100%;
145 100
 	display: flex;
101
+	overflow: auto;
146 102
 	flex-direction: column;
147
-	align-items: center;
148
-	text-align: center;
149
-	margin-bottom: 20px;
150
-	width: 100%;
151 103
 }
152 104
 
153
-#content .container .row {
105
+#banner {
106
+	flex-shrink: 0;
154 107
 	display: flex;
155
-	flex-wrap: wrap;
156
-	justify-content: center;
108
+	flex-direction: column;
109
+	height: 550px;
157 110
 	width: 100%;
111
+	background-image: url('../imgs/22.JPG');
112
+	background-repeat: no-repeat;
113
+	background-position: 0 -295px;
114
+	background-size: 100% auto;
158 115
 }
159 116
 
160
-#content .container .service {
161
-	order: 1;
117
+.banner-container{
162 118
 	display: flex;
119
+	height: 240px;
120
+	margin: auto 0 auto 0;
163 121
 	flex-direction: column;
164 122
 	justify-content: center;
165
-	margin: 20px;
166
-	width: 400px;
167
-	height: 255px;
168
-	border: solid 1px rgb(94, 94, 94);
169
-	transition: transform 40ms;
170
-	user-select: none;
171
-	cursor: pointer;
123
+	margin-left: 200px;
124
+	width: 650px;
125
+	color: rgb(255, 255, 255);
126
+	font-family: 'Source Sans Pro', sans-serif;
127
+	border-style: solid;
128
+	border-color: #ffffff;
129
+	border-left-width: 0;
130
+	border-right-width: 0;
131
+	border-top-width: 1px;
132
+	border-bottom-width: 1px;
133
+	padding: 20px;
134
+	background: rgba(0,0,0,.6);
135
+	box-shadow: inset 0 -2px 5px rgba(0,0,0,.33);
136
+	
172 137
 }
173 138
 
174
-#content .container .service:hover{
175
-	transform: scale(1.1);
139
+
140
+.banner-container .header{
141
+	font-size: 15px;
176 142
 }
177 143
 
178
-#content .container .service.active:hover{
179
-	transform: scale(1);
144
+.banner-container .title{
145
+	font-size: 40px;
146
+	font-weight: 500;
180 147
 }
181 148
 
182
-#content .container .service.active {
183
-	order: 0;
184
-	width: 100%;
185
-	min-height: 500px;
186
-	height: auto;
149
+.banner-container .buttons{
150
+	display: flex;
187 151
 	flex-direction: row;
188
-	justify-content: start;
152
+	font-size: 40px;
153
+	font-weight: 500;
154
+	align-self: flex-end;
189 155
 }
190 156
 
191
-#content .container .service.active h1 {
192
-	display: none;
157
+.banner-container button {
158
+	font-family: inherit;
159
+    border: none;
160
+    margin: 0 0 0 5px;
161
+    text-decoration: none;
162
+	background: none;
163
+    color: #ffffff;
164
+	font-size: 25px;
165
+    cursor: pointer;
166
+    text-align: center;
167
+	line-height: 1.1;
168
+	transition: 220ms all ease-in-out;
169
+	border-style: solid;
170
+	border-color: #717171;
171
+	border-width: 1px;
172
+	padding: 0.25em 0.75em;
173
+	min-width: 10ch;
174
+	min-height: 44px;
193 175
 }
194 176
 
195
-#content .container .service.active .image {
196
-	width: 100%;
197
-	height: 100%;
198
-	background-size: cover;
177
+.banner-container button.highlight{
178
+	background: #309d6691;
199 179
 }
200 180
 
201
-#content .container .service.active .image .discription {
202
-	display: flex;
181
+.banner-container button:hover,
182
+.banner-container button:focus {
183
+    background: var(--lm-color);
203 184
 }
204 185
 
205
-#content .container .service h1 {
206
-	margin-top: auto;
207
-	font-size: 15pt;
208
-	width: 100%;
186
+.banner-container button:focus {
187
+    outline: 1px solid #fff;
188
+    outline-offset: -4px;
209 189
 }
210 190
 
211
-#content .container .service .image {
212
-	margin-bottom: auto;
213
-	height: 200px;
214
-	width: 100%;
215
-	background-size: 100% auto;
216
-	background-repeat: no-repeat;
217
-	background-position: 0 0;
191
+.banner-container button:active {
192
+    transform: scale(0.99);
218 193
 }
219 194
 
220
-#content .container .service .image .discription {
221
-	display: none;
222
-	align-items: center;
223
-	justify-content: center;
224
-	flex-direction: column;
195
+
196
+
197
+.container{
198
+	flex-shrink: 0;
225 199
 	width: 100%;
226
-	height: 100%;
227
-	color: white;
228
-	background-color: rgba(0, 0, 0, 0.9);
200
+	display: flex;
201
+	flex-direction: column;
202
+	justify-content: center;
203
+	align-items: center;
229 204
 }
230 205
 
231
-#content .container .service .image .discription ul{
232
-	text-align: left;
206
+.info-cards{
207
+	max-width: 1280px;
208
+	min-height: 500px;
209
+	background: #f9f9f9;
210
+	margin-top: -50px;
211
+	display: flex;
212
+	flex-direction: row;
213
+	border-radius: 5px;
233 214
 }
234 215
 
235
-#content .container .service .image .discription .contactLink{
236
-	color: rgb(130, 253, 137);
237
-	text-decoration: none;
238
-	font-weight: 900;
239
-	font-size: 20px;
216
+.card{
217
+	flex-shrink: 0;
218
+	flex-grow: 1;
219
+	display: flex;
220
+	flex-direction: column;
221
+	width: 318px;
222
+	align-items: center;
240 223
 }
241 224
 
242
-#content .container .service .image.pc {
243
-	background-image: url('../imgs/pc.jpg');
225
+.card.boarder{
226
+	border-right-style: solid;
227
+	border-color: #d9d9d9;
228
+	border-width: 1px;
244 229
 }
245 230
 
246
-#content .container .service .image.pd {
247
-	background-image: url('../imgs/pd.jpg');
231
+.card .icon {
232
+	flex-shrink: 0;
233
+	color: var(--lm-color);
234
+	color: rgb(255, 118, 7);
235
+	margin-top: 50px;
236
+	width: 70px;
237
+	height: 70px;
238
+	stroke: currentColor;
239
+	stroke-width: 1;
240
+	stroke-linecap: round;
241
+	stroke-linejoin: round;
242
+	fill: none;
248 243
 }
249 244
 
250
-#content .container .service .image.hvac {
251
-	background-image: url('../imgs/hvac.jpg');
245
+.card .title{
246
+	flex-shrink: 0;
247
+	font-family: "Rubik", sans-serif;
248
+	font-size: 21px;
249
+	font-weight: 500;
250
+	color: rgb(27, 26, 26);
252 251
 }
253 252
 
254
-#content .container .service .image.pcs {
255
-	background-image: url('../imgs/pcs.jpg');
253
+.card p {
254
+	font-family: "Roboto", sans-serif;
255
+	font-weight: 400;
256
+	color: rgb(81, 80, 80);
257
+	margin: 20px;
258
+	font-size: 14px;
259
+	word-wrap: normal;
260
+	line-height: 24px;
261
+	text-align: center;
256 262
 }
257 263
 
258
-#content .container .contactBox {
259
-	display: flex;
260
-	flex-direction: row;
261
-	justify-content: space-around;
262
-	align-items: center;
263
-	width: 100%;
264
-	padding-top: 20px;
265
-	background-image: linear-gradient(to bottom, #ccc, transparent);
266
-	font-size: 20px;
267
-	font-weight: 600;
268
-}
269 264
 
270
-#content .container .contactBox .infoContainer {
271
-	padding-top: 5px;
272
-	padding-bottom: 5px;
273
-	border-bottom: solid 1px white;
274
-}
265
+
266
+
267
+
268
+
275 269
 
276 270
 .coolLookingBox {
277 271
 	background-color: #f5f5f5;
@@ -320,23 +314,6 @@ footer {
320 314
 	margin: auto;
321 315
 }
322 316
 
323
-.divider{	/*		Thanks Milan! https://codepen.io/Oddgson		*/
324
-	
325
-	position: relative;
326
-	margin-top: 10px;
327
-	height: 1px;
328
-}
329
-
330
-.div-transparent:before{
331
-	content: "";
332
-	position: absolute;
333
-	top: 0;
334
-	left: 5%;
335
-	right: 5%;
336
-	width: 90%;
337
-	height: 2px;
338
-	background-image: linear-gradient(to right, transparent, #008cff65, transparent);
339
-}
340 317
 
341 318
 @media screen and (max-width: 1200px) {
342 319
 	nav .blank {
@@ -366,24 +343,10 @@ footer {
366 343
 	nav .blank {
367 344
 	  display: none;
368 345
 	}
369
-
370
-	#content {
371
-		padding-top: 0;
372
-	}
373
-	#content #banner {
374
-		justify-content: center;
375
-
376
-	}
377
-	#content #banner #bannerTxt {
378
-		margin: 10px;
379
-	}
380
-	#content .container .contactBox {
381
-		flex-direction: column;
382
-	}
383 346
 }
384 347
 
385 348
 @media screen and (max-width: 320px) {
386 349
 	nav .links {
387 350
 		flex-direction: column;
388 351
 	}
389
-}
352
+}

二进制
assets/imgs/20180319_180443.jpg 查看文件


二进制
assets/imgs/20180501_134032.jpg 查看文件


二进制
assets/imgs/20180917_145118.jpg 查看文件


二进制
assets/imgs/20181002_182140.jpg 查看文件


二进制
assets/imgs/20181102_092020.jpg 查看文件


二进制
assets/imgs/20181220_130251.jpg 查看文件


二进制
assets/imgs/22.jpg 查看文件


+ 1
- 1
assets/js/main.js 查看文件

@@ -1,4 +1,4 @@
1
-
1
+//Writen by Bedirhan Teymur @ LM Control
2 2
 function init_map(){
3 3
 	let map = L.map('map', {scrollWheelZoom: false}).setView([-36.8762668, 174.7325985], 16);
4 4
 

+ 411
- 0
assets/logo.svg 查看文件

@@ -0,0 +1,411 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<svg
3
+   xmlns:ooo="http://xml.openoffice.org/svg/export"
4
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+   xmlns:cc="http://creativecommons.org/ns#"
6
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+   xmlns:svg="http://www.w3.org/2000/svg"
8
+   xmlns="http://www.w3.org/2000/svg"
9
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+   inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
12
+   sodipodi:docname="LMC Logo SVG22.svg"
13
+   id="svg138"
14
+   xml:space="preserve"
15
+   stroke-linejoin="round"
16
+   stroke-width="28.222"
17
+   fill-rule="evenodd"
18
+   preserveAspectRatio="xMidYMid"
19
+   viewBox="0 0 25000 7000"
20
+   height="70mm"
21
+   width="250mm"
22
+   version="1.2"><metadata
23
+   id="metadata142"><rdf:RDF><cc:Work
24
+       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
25
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><sodipodi:namedview
26
+   inkscape:current-layer="container-id1"
27
+   inkscape:window-maximized="1"
28
+   inkscape:window-y="-8"
29
+   inkscape:window-x="1912"
30
+   inkscape:cy="109.01461"
31
+   inkscape:cx="515.23903"
32
+   inkscape:zoom="1.203325"
33
+   showgrid="false"
34
+   id="namedview140"
35
+   inkscape:window-height="1017"
36
+   inkscape:window-width="1920"
37
+   inkscape:pageshadow="2"
38
+   inkscape:pageopacity="0"
39
+   guidetolerance="10"
40
+   gridtolerance="10"
41
+   objecttolerance="10"
42
+   borderopacity="1"
43
+   bordercolor="#666666"
44
+   pagecolor="#990000" />
45
+ <defs
46
+   id="defs8"
47
+   class="ClipPathGroup">
48
+  <clipPath
49
+   clipPathUnits="userSpaceOnUse"
50
+   id="presentation_clip_path">
51
+   <rect
52
+   id="rect2"
53
+   height="7000"
54
+   width="25000"
55
+   y="0"
56
+   x="0" />
57
+  </clipPath>
58
+  <clipPath
59
+   clipPathUnits="userSpaceOnUse"
60
+   id="presentation_clip_path_shrink">
61
+   <rect
62
+   id="rect5"
63
+   height="6986"
64
+   width="24950"
65
+   y="7"
66
+   x="25" />
67
+  </clipPath>
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
+    </defs>
93
+ <defs
94
+   id="defs12"
95
+   class="TextShapeIndex">
96
+  <g
97
+   id="g10"
98
+   ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13"
99
+   ooo:slide="id1" />
100
+ </defs>
101
+ <defs
102
+   id="defs44"
103
+   class="EmbeddedBulletChars">
104
+  <g
105
+   transform="scale(0.00048828125,-0.00048828125)"
106
+   id="bullet-char-template-57356">
107
+   <path
108
+   id="path14"
109
+   d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z" />
110
+  </g>
111
+  <g
112
+   transform="scale(0.00048828125,-0.00048828125)"
113
+   id="bullet-char-template-57354">
114
+   <path
115
+   id="path17"
116
+   d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z" />
117
+  </g>
118
+  <g
119
+   transform="scale(0.00048828125,-0.00048828125)"
120
+   id="bullet-char-template-10146">
121
+   <path
122
+   id="path20"
123
+   d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z" />
124
+  </g>
125
+  <g
126
+   transform="scale(0.00048828125,-0.00048828125)"
127
+   id="bullet-char-template-10132">
128
+   <path
129
+   id="path23"
130
+   d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z" />
131
+  </g>
132
+  <g
133
+   transform="scale(0.00048828125,-0.00048828125)"
134
+   id="bullet-char-template-10007">
135
+   <path
136
+   id="path26"
137
+   d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z" />
138
+  </g>
139
+  <g
140
+   transform="scale(0.00048828125,-0.00048828125)"
141
+   id="bullet-char-template-10004">
142
+   <path
143
+   id="path29"
144
+   d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z" />
145
+  </g>
146
+  <g
147
+   transform="scale(0.00048828125,-0.00048828125)"
148
+   id="bullet-char-template-9679">
149
+   <path
150
+   id="path32"
151
+   d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z" />
152
+  </g>
153
+  <g
154
+   transform="scale(0.00048828125,-0.00048828125)"
155
+   id="bullet-char-template-8226">
156
+   <path
157
+   id="path35"
158
+   d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z" />
159
+  </g>
160
+  <g
161
+   transform="scale(0.00048828125,-0.00048828125)"
162
+   id="bullet-char-template-8211">
163
+   <path
164
+   id="path38"
165
+   d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z" />
166
+  </g>
167
+  <g
168
+   transform="scale(0.00048828125,-0.00048828125)"
169
+   id="bullet-char-template-61548">
170
+   <path
171
+   id="path41"
172
+   d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z" />
173
+  </g>
174
+ </defs>
175
+ <defs
176
+   id="defs46"
177
+   class="TextEmbeddedBitmaps" />
178
+ <g
179
+   id="g51">
180
+  <g
181
+   class="Master_Slide"
182
+   id="id2">
183
+   <g
184
+   class="Background"
185
+   id="bg-id2" />
186
+   <g
187
+   class="BackgroundObjects"
188
+   id="bo-id2" />
189
+  </g>
190
+ </g>
191
+ <g
192
+   transform="translate(-153.91381,329.81531)"
193
+   id="g136"
194
+   class="SlideGroup">
195
+  <g
196
+   id="g134">
197
+   <g
198
+   id="container-id1">
199
+    <g
200
+   id="g58"
201
+   class="com.sun.star.drawing.ClosedBezierShape"
202
+   transform="translate(87.950752,-263.85224)">
203
+       <g
204
+   id="id3">
205
+        <rect
206
+   id="rect53"
207
+   height="3189"
208
+   width="2260"
209
+   y="2027"
210
+   x="12693"
211
+   fill="none"
212
+   stroke="none"
213
+   class="BoundingBox" />
214
+        <path
215
+   id="path55"
216
+   d="M 14798,4928 V 2049 h 150 c 1,19 3,38 3,57 0,976 0,1953 0,2929 0,30 4,63 -6,90 -11,32 -30,76 -56,86 -30,11 -76,-4 -108,-20 -24,-12 -41,-43 -57,-68 -615,-925 -1229,-1851 -1842,-2776 -9,-13 -18,-24 -35,-47 v 2895 h -154 v -55 c 0,-989 0,-1978 0,-2967 0,-9 0,-18 0,-27 0,-46 4,-91 54,-110 54,-21 98,-1 135,37 18,19 34,41 48,63 610,919 1220,1840 1831,2759 8,13 18,25 27,37 3,-1 7,-2 10,-4 z"
217
+   stroke="none"
218
+   fill="#309d66" />
219
+       </g>
220
+      </g><g
221
+   id="g65"
222
+   class="com.sun.star.drawing.ClosedBezierShape"
223
+   transform="translate(87.950752,-263.85224)">
224
+       <g
225
+   id="id4">
226
+        <rect
227
+   id="rect60"
228
+   height="3156"
229
+   width="2042"
230
+   y="2044"
231
+   x="8012"
232
+   fill="none"
233
+   stroke="none"
234
+   class="BoundingBox" />
235
+        <path
236
+   id="path62"
237
+   d="m 10046,5041 v 154 c -18,2 -33,3 -49,3 -441,0 -882,1 -1323,0 -146,0 -286,-30 -407,-116 -146,-103 -213,-253 -242,-423 -9,-52 -12,-106 -12,-159 -1,-608 -3,-1217 1,-1825 2,-321 225,-569 541,-614 65,-9 131,-15 196,-15 418,-1 836,-1 1254,-1 14,0 28,2 47,3 v 158 h -64 c -404,0 -807,0 -1211,0 -114,1 -227,5 -335,47 -166,65 -263,196 -266,370 -9,617 -8,1235 -9,1852 0,67 10,135 24,200 54,239 237,357 488,362 433,8 867,3 1301,4 21,0 42,0 66,0 z"
238
+   stroke="none"
239
+   fill="#309d66" />
240
+       </g>
241
+      </g><g
242
+   id="g72"
243
+   class="com.sun.star.drawing.ClosedBezierShape"
244
+   transform="translate(87.950752,-263.85224)">
245
+       <g
246
+   id="id5">
247
+        <rect
248
+   id="rect67"
249
+   height="3153"
250
+   width="2199"
251
+   y="2052"
252
+   x="10224"
253
+   fill="none"
254
+   stroke="none"
255
+   class="BoundingBox" />
256
+        <path
257
+   id="path69"
258
+   d="m 12266,4458 c -1,140 -29,276 -118,389 -110,140 -265,191 -432,196 -259,7 -517,10 -774,-1 -272,-11 -475,-140 -538,-405 -17,-76 -24,-155 -25,-232 -2,-511 -2,-1022 0,-1533 1,-109 9,-219 50,-323 73,-186 214,-286 404,-321 57,-11 117,-15 175,-15 242,0 484,-5 726,5 187,7 351,74 451,247 59,104 80,220 81,338 2,279 0,558 0,838 0,273 2,545 0,817 z m 149,-828 c 0,-314 4,-627 -1,-939 -3,-135 -46,-262 -127,-372 -133,-184 -327,-253 -541,-260 -276,-10 -552,-7 -827,-1 -132,2 -260,37 -375,104 -224,131 -312,342 -314,586 -7,588 -10,1178 0,1766 6,412 248,640 641,677 186,18 376,13 564,12 139,-1 279,0 415,-22 343,-56 542,-266 562,-608 18,-313 3,-629 3,-943 z"
259
+   stroke="none"
260
+   fill="#309d66" />
261
+       </g>
262
+      </g><g
263
+   id="g79"
264
+   class="com.sun.star.drawing.ClosedBezierShape"
265
+   transform="translate(87.950752,-263.85224)">
266
+       <g
267
+   id="id6">
268
+        <rect
269
+   id="rect74"
270
+   height="3153"
271
+   width="2198"
272
+   y="2052"
273
+   x="20131"
274
+   fill="none"
275
+   stroke="none"
276
+   class="BoundingBox" />
277
+        <path
278
+   id="path76"
279
+   d="m 22173,4458 c -1,140 -28,276 -118,389 -109,140 -264,191 -431,196 -258,7 -516,10 -774,-1 -272,-11 -474,-140 -538,-405 -18,-76 -25,-155 -25,-232 -2,-511 -2,-1022 0,-1533 0,-109 9,-219 51,-323 72,-186 213,-286 404,-321 57,-11 116,-15 175,-15 242,0 484,-5 725,5 187,7 351,74 450,247 60,104 81,220 81,338 2,279 1,558 1,838 0,273 2,545 -1,817 z m 150,-828 c 0,-314 4,-627 -2,-939 -2,-135 -45,-262 -126,-372 -133,-184 -328,-253 -541,-260 -275,-10 -551,-7 -826,-1 -132,2 -260,37 -376,104 -224,131 -312,342 -315,586 -6,588 -9,1178 0,1766 7,412 250,640 642,677 187,18 376,13 565,12 138,-1 278,0 413,-22 344,-56 543,-266 562,-608 18,-313 4,-629 4,-943 z"
280
+   stroke="none"
281
+   fill="#309d66" />
282
+       </g>
283
+      </g><g
284
+   id="g86"
285
+   class="com.sun.star.drawing.ClosedBezierShape"
286
+   transform="translate(87.950752,-263.85224)">
287
+       <g
288
+   id="id7">
289
+        <rect
290
+   id="rect81"
291
+   height="3225"
292
+   width="2279"
293
+   y="2017"
294
+   x="17622"
295
+   fill="none"
296
+   stroke="none"
297
+   class="BoundingBox" />
298
+        <path
299
+   id="path83"
300
+   d="m 19175,2018 c 70,14 140,24 208,41 280,70 464,279 478,569 12,234 12,469 -1,702 -16,290 -223,502 -520,519 -334,20 -667,14 -1000,19 -26,1 -52,1 -82,12 543,451 1088,901 1642,1360 -87,0 -161,2 -235,-2 -18,0 -37,-16 -52,-29 -240,-200 -480,-400 -720,-600 -268,-224 -536,-447 -804,-671 -15,-12 -30,-24 -44,-37 -41,-36 -50,-83 -33,-132 15,-45 58,-51 99,-52 151,-2 302,-3 453,-5 207,-2 414,-2 620,-6 107,-2 210,-22 307,-70 142,-71 207,-196 214,-345 9,-214 8,-430 1,-645 -8,-225 -172,-399 -402,-438 -81,-14 -163,-22 -244,-22 -406,-2 -812,-1 -1219,-1 h -60 v 3051 h -159 V 2018 Z"
301
+   stroke="none"
302
+   fill="#309d66" />
303
+       </g>
304
+      </g><g
305
+   id="g93"
306
+   class="com.sun.star.drawing.PolyPolygonShape"
307
+   transform="translate(87.950752,-263.85224)">
308
+       <g
309
+   id="id8">
310
+        <rect
311
+   id="rect88"
312
+   height="3221"
313
+   width="2066"
314
+   y="2017"
315
+   x="15235"
316
+   fill="none"
317
+   stroke="none"
318
+   class="BoundingBox" />
319
+        <path
320
+   id="path90"
321
+   d="m 17300,2018 v 165 h -954 v 3054 h -160 V 2185 h -951 v -167 z"
322
+   stroke="none"
323
+   fill="#309d66" />
324
+       </g>
325
+      </g><g
326
+   id="g100"
327
+   class="com.sun.star.drawing.ClosedBezierShape"
328
+   transform="translate(87.950752,-263.85224)">
329
+       <g
330
+   id="id9">
331
+        <rect
332
+   id="rect95"
333
+   height="3232"
334
+   width="1960"
335
+   y="1994"
336
+   x="22641"
337
+   fill="none"
338
+   stroke="none"
339
+   class="BoundingBox" />
340
+        <path
341
+   id="path97"
342
+   d="m 22641,1995 h 164 v 62 c 0,795 0,1590 1,2385 0,120 11,238 66,348 69,139 184,219 332,248 89,18 182,25 273,26 355,3 711,1 1066,1 h 57 v 159 c -14,0 -29,0 -45,0 -383,0 -765,1 -1148,0 -145,-1 -286,-20 -420,-83 -180,-85 -278,-234 -316,-424 -16,-78 -21,-159 -30,-239 z"
343
+   stroke="none"
344
+   fill="#309d66" />
345
+       </g>
346
+      </g><rect
347
+   id="rect102"
348
+   height="4766"
349
+   width="7032"
350
+   y="956.14783"
351
+   x="573.95074"
352
+   fill="none"
353
+   stroke="none"
354
+   class="BoundingBox" /><path
355
+   d="m 1855.9703,956.16286 c -703.9072,0 -1281.00708,576.94354 -1281.00708,1279.97344 v 2203.9998 c 0,703.9072 577.09988,1281.0071 1281.00708,1281.0071 h 1583.986 L 3559.2772,5439.145 H 1855.9703 c -550.0929,0 -999.00878,-448.9161 -999.00878,-999.0089 V 2236.1363 c 0,-548.9699 448.91588,-997.9752 999.00878,-997.9752 h 3480.9762 l 119.3207,-281.99824 z m 4707.0511,22.73763 -115.5486,267.06381 c 492.51,60.7933 875.5023,482.4849 875.5023,990.172 v 2203.9998 c 0,550.2428 -447.934,999.0089 -998.0271,999.0089 H 4633.0101 l -122.0081,281.9982 h 1813.946 c 703.9073,0 1279.9737,-577.2499 1279.9737,-1281.0071 V 2236.1363 c 0,-621.6663 -450.7428,-1144.6102 -1041.9003,-1257.23581 z"
356
+   style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:281.993;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
357
+   id="path3495" /><rect
358
+   id="rect109"
359
+   height="6176"
360
+   width="3742"
361
+   y="-238.85225"
362
+   x="3348.9507"
363
+   fill="none"
364
+   stroke="none"
365
+   class="BoundingBox" /><g
366
+   id="g121"
367
+   class="com.sun.star.drawing.ClosedBezierShape"
368
+   transform="translate(87.950752,-263.85224)">
369
+       <g
370
+   id="id12">
371
+        <rect
372
+   id="rect116"
373
+   height="3107"
374
+   width="1904"
375
+   y="2037"
376
+   x="1337"
377
+   fill="none"
378
+   stroke="none"
379
+   class="BoundingBox" />
380
+        <path
381
+   id="path118"
382
+   d="m 1337,2037 h 401 v 54 c 0,733 -1,1468 1,2201 0,66 6,134 19,198 28,136 124,223 262,241 69,9 139,15 209,15 320,2 640,1 961,1 h 50 v 393 c -13,1 -25,2 -37,2 -382,0 -762,1 -1143,-1 -126,0 -250,-18 -368,-68 -188,-81 -289,-231 -326,-428 -15,-79 -20,-159 -29,-239 z"
383
+   stroke="none"
384
+   fill="#ffffff" />
385
+       </g>
386
+      </g><g
387
+   id="g128"
388
+   class="com.sun.star.drawing.ClosedBezierShape"
389
+   transform="translate(87.950752,-263.85224)">
390
+       <g
391
+   id="id13">
392
+        <rect
393
+   id="rect123"
394
+   height="3175"
395
+   width="3112"
396
+   y="2003"
397
+   x="3654"
398
+   fill="none"
399
+   stroke="none"
400
+   class="BoundingBox" />
401
+        <path
402
+   id="path125"
403
+   d="M 6765,5142 H 6384 V 2647 c -3,0 -6,-1 -10,-1 -53,139 -107,278 -161,417 -235,611 -470,1222 -706,1832 -31,78 -66,153 -128,213 -103,100 -278,91 -354,-29 -58,-94 -101,-198 -142,-301 -263,-664 -523,-1331 -783,-1996 -18,-45 -36,-91 -63,-135 v 2494 h -383 v -50 c 0,-901 0,-1804 0,-2705 0,-87 7,-174 60,-248 71,-101 174,-132 291,-131 159,1 252,90 306,229 175,456 348,913 523,1369 118,312 236,622 354,933 5,12 11,24 21,46 41,-105 78,-201 115,-297 256,-671 512,-1341 770,-2010 23,-59 53,-118 92,-166 86,-105 237,-134 379,-83 117,42 192,155 199,299 1,15 0,31 0,46 1,905 1,1810 1,2714 z"
404
+   stroke="none"
405
+   fill="#ffffff" />
406
+       </g>
407
+      </g>
408
+   </g>
409
+  </g>
410
+ </g>
411
+</svg>

+ 52
- 172
index.html 查看文件

@@ -6,11 +6,13 @@
6 6
 	<meta charset="UTF-8">
7 7
 	<meta name="viewport" content="width=device-width, initial-scale=1">
8 8
 	<meta property="og:description" content="LM Control | Switchboards & Control Panels"/>
9
+	<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet"> 
10
+	<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap" rel="stylesheet">
11
+	<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@600&display=swap" rel="stylesheet">
12
+	<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
9 13
 	<link href="assets/css/main.css" rel="stylesheet">
10 14
 
11
-	<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
12
-   integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
13
-   crossorigin=""/>
15
+	<script src="https://unpkg.com/feather-icons"></script>
14 16
 
15 17
 </head>
16 18
 
@@ -21,187 +23,65 @@
21 23
 		}
22 24
 	</script>
23 25
 
24
-	<nav>
25
-		<div class="logo"></div>
26
-		<div class="links">
27
-			<a href="#">Home</a> 
28
-			<a href="#wwd">Services</a> 
29
-			<a href="#au">About us</a> 
30
-			<a href="#cu">Contact us</a> 
31
-		</div>
32
-		<div class="blank"></div>
33
-	</nav>
34
-
35
-	<section id="content">
36
-		<div id="banner">
37
-			<span id="bannerTxt">LM Control will design and build the best solution for your control panel and switchboard needs, and provide you with excellent service every step of the way.</span>
38
-			<div id="quickInfo">
39
-				<span>Street address:</span>
40
-				<p>
41
-   					31 Taylors Road<br>
42
-   					Morningside<br>
43
-					Auckland 1025
44
-				</p>
45
-				<p>
46
-					<a href="tel:098496374" class="coolLookingBox landline">09 849 6374</a>
47
-					<a href="tel:021849634" class="coolLookingBox mobile">021 849 634</a>
48
-					<a href="mailto:info@lmc.co.nz" class="coolLookingBox email">info@lmc.co.nz</a>
49
-				</p>
50
-			</div>
51
-		</div>
52
-		
53
-		<div class="container" id="wwd">
54
-			<h1>What we do</h1>
55
-			(Click to expand)
56
-			<div class="row">
57
-				<div class="service">
58
-					<div class="image pc">
59
-						<div class="discription">
60
-							<h2>Process Control</h2>
61
-							<span>Extensive experience in PLC, motor control and automation design and manufacturing means we know the importance of designing and building PLC panels that have efficient layouts.  This allows for future changes and additions.</span>
62
-							<h2>Process control services</h2>
63
-							<span>We build PLC, motor control and automation control panels for:</span>
64
-							<ul>
65
-								<li>Pumping equipment</li>
66
-								<li>Process machinery</li>
67
-								<li>Pneumatic equipment</li>
68
-								<li>Large integrated systems</li>
69
-								<li>Manufacturing and packaging control systems</li>
70
-								<li>Motor starting</li>
71
-								<li>Food industry machinery</li>
72
-								<li>Motor control centres</li>
73
-							</ul>
74
-
75
-							<span><a class="contactLink" href="mailto:info@lmc.co.nz">Contact us</a> to find out how we can meet your process control needs!</span>
76
-						</div>
77
-					</div>
78
-					<h1>Process Control</h1>
79
-				</div>
80
-
81
-				<div class="service">
82
-					<div class="image pd">
83
-						<div class="discription">
84
-							<h2>Power Distribution Systems & Switchboards</h2>
85
-							<span>You are assured of quality power distribution systems / switchboards that are well made, fully tested and work correctly.</span>
86
-							<span>This level of care and attention applies to all of our power distribution switchboard work, which specialises in low voltage switchboards that are used in the following:</span>
87
-							<ul>
88
-								<li>Power distribution systems</li>
89
-								<li>Lighting control</li>
90
-								<li>Electricity retailer metering</li>
91
-								<li>Power factor correction</li>
92
-								<li>Heating and air conditioning control systems.</li>
93
-							</ul>
94
-							<span><a class="contactLink" href="mailto:info@lmc.co.nz">Contact us</a> to find out how we can meet your switchboards & distribution system needs!</span>
95
-						</div>
96
-					</div>
97
-					<h1>Power distribution</h1>
26
+	<main id="wrapper">
27
+		<section id="banner">
28
+			<nav>
29
+				<img class="logo" src="assets/logo.svg"></img>
30
+				<div class="links">
31
+					<a href="#">Home</a> 
32
+					<a href="#">Services</a> 
33
+					<a href="#">Gallery</a> 
34
+					<a href="#">About Us</a> 
35
+					<a href="#">Contact Us</a> 
98 36
 				</div>
99
-
100
-				<div class="service">
101
-					<div class="image hvac">
102
-						<div class="discription">
103
-							<h2>HVAC control panels</h2>
104
-							<span>We are experts in designing and manufacturing HVAC control panels for dedicated building services control systems that are used in the following applications:</span>
105
-							<ul>
106
-								<li>Large commercial and industrial buildings</li>
107
-								<li>Factories</li>
108
-								<li>Warehouses</li>
109
-								<li>High-rise apartments</li>
110
-								<li>Offices</li>
111
-								<li>Retail outlets</li>
112
-							</ul>
113
-
114
-							<h2>HVAC control panels for building services control systems</h2>
115
-							<span>LM Control designs and manufactures HVAC control panels for building services control systems, such as:</span>
116
-							<ul>
117
-								<li>Heating</li>
118
-								<li>Ventilation</li>
119
-								<li>Air conditioning</li>
120
-								<li>Lighting</li>
121
-								<li>Security</li>
122
-							</ul>
123
-							<span><a class="contactLink" href="mailto:info@lmc.co.nz">Contact us</a> to find out how we can meet your HVAC needs!</span>
124
-						</div>
125
-					</div>
126
-					<h1>HVAC</h1>
127
-				</div>
128
-
129
-				<div class="service">
130
-					<div class="image pcs">
131
-						<div class="discription">
132
-							<h2>Pump control systems</h2>
133
-							<span>We are experienced designers and manufacturers of pump control systems ranging from single small pumps, to large pump stations.</span>
134
-							<span>We also supply custom fabricated cabinets and outdoor control pillars.</span>
135
-							<h2>Pump control system applications</h2>
136
-							<span>Our pump controls are used in the following applications:</span>
137
-							<ul>
138
-								<li>Pump stations</li>
139
-								<li>Fire pumps</li>
140
-								<li>Sump pumps</li>
141
-								<li>Header tank pumps</li>
142
-								<li>Level control pumps</li>
143
-								<li>Stormwater and sewerage pumps.</li>
144
-							</ul>
145
-							<span><a class="contactLink" href="mailto:info@lmc.co.nz">Contact us</a> to find out how we can meet your pump control system needs!</span>
146
-						</div>
147
-					</div>
148
-					<h1>Pump control systems</h1>
37
+			</nav>
38
+			<div class="banner-container">
39
+				<div class="header">From Design To Manufacture</div>
40
+				<div class="title">Innovative & Reliable Electrical Solutions</div>
41
+				<div class="buttons">
42
+					<button class="button highlight">Discover</button>
43
+					<button class="button">Request a quote</button>
149 44
 				</div>
45
+				
150 46
 			</div>
151
-		</div>
152
-
153
-		<div class="divider div-transparent"></div>
47
+		</section>
154 48
 
155
-		<div class="container" id="au">
156
-			<h1>About us</h1>
157
-			<p>If you are looking for a highly experienced power distribution system and switchboard designer and manufacturer, then you have come to the right place.</p>
158
-			<p>LM Control’s founder Don McLean established the company in 1993, building panels ranging from small distribution to large main switchboards, power factor correction units, power retailer metering and control panels.</p>
159
-			<p>Over the years&nbsp;the team’s&nbsp;focus has widened to also include motor control, HVAC control and PLC / automation panels (e.g. fire pump panels, panels for pneumatic systems and machine automation).</p>
160
-			<p>We have been commissioned to do work in a wide range of sectors, with jobs including:</p>
161
-			<ul style="text-align: start;">
162
-				<li>Control systems for airports all around the world</li>
163
-				<li>HVAC controls: for many buildings at Auckland University, Eden Park’s South Stand upgrade, UNITEC building upgrades</li>
164
-				<li>Building a large number of PLC and field panels for DB Berweries’ Otahuhu brewery</li>
165
-				<li>Refurbishing motor starter units for Bluescope Steels’ Glenbrook steelmill</li>
166
-				<li>Building 50VDC distribution components for Telecom exchanges</li>
167
-				<li>Motor starter control panels for fire pump sprinkler systems.</li>
168
-			</ul>
169
-			<p>We are a power distribution system / switchboard / control panel manufacturer in Auckland who works with clients in Auckland, New Zealand and internationally.</p>
170
-			<p>The LM Controls team is committed to providing customers with a personal service. Click <a href="mailto:info@lmc.co.nz">here</a> to contact us for a no-obligations quote.</p>
171
-		</div>
172
-
173
-		<div class="divider div-transparent"></div>
174
-
175
-		<div class="container" id="cu">
176
-			<h1>Where are we?</h1>
177
-			<div id="map"></div>
178
-			<div class="contactBox">
179
-				<div class="infoContainer">
49
+		<section class="container" id="sec1">
50
+			<div class="info-cards">
51
+				<div class="card boarder">
52
+					<i class="icon" data-feather="cpu"></i>
53
+					<h1 class="title">Experience</h1>
180 54
 					<p>
181
-						<a href="tel:098496374" class="coolLookingBox landline">09 849 6374</a>
182
-						<a href="tel:021849634" class="coolLookingBox mobile">021 849 634</a>
183
-						<a href="mailto:info@lmc.co.nz" class="coolLookingBox email">info@lmc.co.nz</a>
55
+						You can't beat experience, from conveyor lines, OEM machinery, and electric motors, we have designed and built custom control panels for nearly every industrial application. This depth of experience enables us to provide the optimal solution for your specific application and provide design recommendations for improved functionality, reliability and value.
184 56
 					</p>
185 57
 				</div>
186
-				<div class="infoContainer">
187
-					<span>Postal address:</span>
58
+				<div class="card boarder">
59
+					<i class="icon" data-feather="layers"></i>
60
+					<h1 class="title">Quality</h1>
188 61
 					<p>
189
-						PO Box 10 011<br>
190
-						Dominion Road<br>
191
-						Auckland 1446
62
+						We are committed to providing high-quality products and services that meet or exceed our clients’ requirements and regulatory standards. From concept to completion, we follow established procedures designed to ensure every project detail is accounted for, including multi-point control panel build inspections, and thorough testing to verify quality and functionality.
63
+					</p>
64
+				</div>
65
+				<div class="card">
66
+					<i class="icon" data-feather="tool"></i>
67
+					<h1 class="title">Support</h1>
68
+					<p>
69
+						We provide numerous remote and on-site services to our customers, including software upgrades, troubleshooting, hardware replacement, and feature additions.
192 70
 					</p>
193 71
 				</div>
194
-
195 72
 			</div>
196
-		</div>
197
-		
198
-		<div class="container" id="gal">
199
-			<h1></h1>
200
-		</div>
73
+		</section>
74
+
75
+		<section class="container" id="sec2">
76
+			<div style="height: 100px;"></div>
77
+		</section>
78
+
79
+	</main>
201 80
 
202
-	</section>
203
-	
204
-	<footer></footer>
81
+
82
+    <script>
83
+		feather.replace()
84
+	</script>
205 85
 
206 86
 	<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"
207 87
 			integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="

正在加载...
取消
保存