-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.html
801 lines (615 loc) · 32.1 KB
/
styles.html
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Styles - Ceevee 2.0</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/vendor.css">
<style type="text/css" media="screen">
.s-styles {
background-color: white;
padding-top: calc(4.5 * var(--space));
padding-bottom: calc(4.5 * var(--space));
position: relative;
}
.s-styles .intro h1 {
margin-top: 0;
}
</style>
<!-- script
================================================== -->
<script defer src="js/vendor/fontawesome/all.min.js"></script>
<!-- favicons
================================================== -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body id="top" class="ss-preload">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- header
================================================== -->
<header class="s-header">
<div class="row s-header__nav-wrap">
<nav class="s-header__nav">
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#resume">Resume</a></li>
<li><a href="index.html#portfolio">Works</a></li>
<li><a href="index.html#testimonials">Testimonials</a></li>
<li><a href="index.html#contact">Say Hello</a></li>
</ul>
</nav>
</div> <!-- end row -->
<a class="s-header__menu-toggle" href="#0" title="Menu">
<span class="s-header__menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- hero
================================================== -->
<section id="hero" class="s-hero target-section">
<div class="s-hero__bg rellax" data-rellax-speed="-7"></div>
<div class="row s-hero__content">
<div class="column">
<div class="s-hero__content-about">
<h1>I'm Jonathan Doe.</h1>
<h3>
I'm a Manila based <span>graphic designer</span>, <span>illustrator</span> and <span>webdesigner</span> creating awesome and
effective visual identities for companies of all sizes around the globe. Let's <a href="#about">start scrolling</a>
and learn more <a href="#about">about me</a>.
</h3>
<div class="s-hero__content-social">
<a href="#0"><i class="fab fa-facebook-square" aria-hidden="true"></i></a>
<a href="#0"><i class="fab fa-twitter" aria-hidden="true"></i></a>
<a href="#0"><i class="fab fa-instagram" aria-hidden="true"></i></a>
<a href="#0"><i class="fab fa-dribbble" aria-hidden="true"></i></a>
<a href="#0"><i class="fab fa-behance" aria-hidden="true"></i></a>
<a href="#0"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</div>
</div> <!-- end s-hero__content-about -->
</div>
</div> <!-- s-hero__content -->
<div class="s-hero__scroll">
<a href="#styles" class="s-hero__scroll-link smoothscroll">
<span class="scroll-arrow">
<svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style="fill:rgba(0, 0, 0, 1);transform:;-ms-filter:"><path d="M18.707 12.707L17.293 11.293 13 15.586 13 6 11 6 11 15.586 6.707 11.293 5.293 12.707 12 19.414z"></path></svg>
</span>
<span class="scroll-text">Scroll Down</span>
</a>
</div> <!-- s-hero__scroll -->
</section> <!-- end s-hero -->
<!-- s-styles
================================================== -->
<section id="styles" class="s-styles">
<div class="row">
<div class="column large-12 intro">
<h1>Style Guide.</h1>
<p class="lead">Lorem ipsum Officia elit ad tempor dolore est ex incididunt incididunt occaecat culpa deserunt
sunt labore in cillum ullamco magna in Excepteur consequat in reprehenderit proident mollit incididunt officia commodo.
Duis ea officia sed dolor pariatur enim dolore dolore quis incididunt nulla exercitation commodo veniam et ea incididunt.
</p>
<hr class="fancy">
</div>
</div> <!-- end row -->
<div class="row">
<div class="column large-6 tab-12">
<h3>Paragraph and Image</h3>
<p><a href="#"><img width="120" height="120" class="h-pull-left" alt="sample-image" src="images/sample-image.jpg"></a>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum.Cras id urna. Morbi
tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu posuere nunc justo tempus leo. Donec mattis,
purus nec placerat bibendum, dui pede condimentum odio, ac blandit ante orci ut diam. Cras fringilla magna.
Phasellus suscipit, leo a pharetra condimentum, lorem tellus eleifend magna, eget fringilla velit magna id
neque posuere nunc justo tempus leo. </p>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum. Cras id urna.
Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu posuere nunc justo tempus leo.
Donec mattis, purus nec placerat bibendum, dui pede condimentumodio, ac blandit ante orci ut diam.
</p>
<p>A <a href="#">link</a>,
<abbr title="this really isn't a very good description">abbrebation</abbr>,
<strong>strong text</strong>,
<em>em text</em>,
<del>deleted text</del>, and
<mark>this is a mark text.</mark>
<code>.code</code>
</p>
</div>
<div class="column large-6 tab-12">
<h3>Drop Caps</h3>
<p class="drop-cap">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia,
there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the
Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the
necessary regelialia. Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem,
euposuere nunc justo tempus leo. Donec mattis, purus nec placerat bibendum, dui pede condimentum odio,
ac blandit ante orci ut diam. Cras fringilla magna. Phasellus suscipit, leo a pharetra condimentum,
lorem tellus eleifend magna, eget fringilla velit magna id neque.
</p>
<h3>Small Print</h3>
<p><small>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero.</small></p>
</div>
</div> <!-- end row -->
<div class="row">
<div class="column large-6 tab-12">
<h3 class="h-add-bottom">Pull Quotes</h3>
<p>
Perspiciatis nemo unde et nobis modi consequatur officia amet. Ut enim
tenetur provident maiores. Perspiciatis asperiores incidunt sequi
quisquam. Enim aut.
</p>
<figure class="pull-quote">
<blockquote>
<p>
When you look in the eyes of grace, when you meet grace,
when you embrace grace, when you see the nail prints in
grace’s hands and the fire in his eyes, when you feel his
relentless love for you - it will not motivate you to sin.
It will motivate you to righteousness.
</p>
<footer>
<cite>Judah Smith</cite>
</footer>
</blockquote>
</figure>
</div>
<div class="column large-6 tab-12">
<h3 class="h-add-bottom">Block Quotes</h3>
<blockquote cite="https://where-i-got-my-info-from.com">
<p>
For God so loved the world, that he gave his only Son, that whoever believes in
him should not perish but have eternal life. For God did not send his Son into
the world to condemn the world, but in order that the world might be
saved through him.
</p>
<footer>
<cite>
<a href="#0">John 3:16-17 ESV</a>
</cite>
</footer>
</blockquote>
<blockquote>
<p>There is a God-shaped vacuum in the heart of each man which cannot be satisfied
by any created thing but only by God the Creator.</p>
<footer>
<cite>Blaise Pascal</cite>
</footer>
</blockquote>
</div>
</div> <!-- end row -->
<div class="row h-add-half-bottom">
<div class="column large-6 tab-12">
<h3>Example Lists</h3>
<ol>
<li>Here is an example</li>
<li>of an ordered list.</li>
<li>A parent list item.
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
</li>
<li>A list item.</li>
</ol>
<ul class="disc">
<li>Here is an example</li>
<li>of an unordered list.</li>
</ul>
<h3>Definition Lists</h3>
<h5>a) Multi-line Definitions (default) </h5>
<dl class="dictionary-style">
<dt><strong>This is a term</strong></dt>
<dd>this is the definition of that term, which both live in a <code>dl</code>.</dd>
<dt><strong>Another Term</strong></dt>
<dd>And it gets a definition too, which is this line</dd>
<dd>This is a 2<sup>nd</sup> definition for a single term. A <code>dt</code> may be followed by multiple <code>dd</code>s.</dd>
</dl>
<h3 class="h-add-bottom">Skill Bars</h3>
<ul class="skill-bars-fat">
<li>
<div class="progress percent85"></div>
<strong>HTML</strong>
</li>
<li>
<div class="progress percent85"></div>
<strong>CSS</strong>
</li>
<li>
<div class="progress percent65"></div>
<strong>Javascript</strong>
</li>
<li>
<div class="progress percent90"></div>
<strong>Figma</strong>
</li>
<li>
<div class="progress percent75"></div>
<strong>Illustrator</strong>
</li>
<li>
<div class="progress percent60"></div>
<strong>Photoshop</strong>
</li>
</ul>
</div>
<div class="column large-6 tab-12">
<h3 class="h-add-bottom">Buttons</h3>
<p>
<a class="btn btn--primary h-full-width" href="#0">Primary Button</a>
<a class="btn h-full-width" href="#0">Default Button</a>
<a class="btn btn--stroke h-full-width" href="#0">Stroke Button</a>
</p>
<h3>Stats Tabs</h3>
<ul class="stats-tabs">
<li><a href="#0">1,234 <em>Peter</em></a></li>
<li><a href="#0">567 <em>James</em></a></li>
<li><a href="#0">23,456 <em>John</em></a></li>
<li><a href="#0">3,456 <em>Andrew</em></a></li>
<li><a href="#0">456 <em>Philip</em></a></li>
<li><a href="#0">26 <em>Matthew</em></a></li>
</ul>
<h3 class="h-add-bottom">Code</h3>
<pre><code class="language-css">
code {
font-size: 1.4rem;
margin: 0 .2rem;
padding: .2rem .6rem;
white-space: nowrap;
background: #F1F1F1;
border: 1px solid #E1E1E1;
border-radius: 3px;
}
</code></pre>
</div>
</div> <!-- end row -->
<div class="row h-add-half-bottom">
<div class="column large-6 tab-12">
<h1>H1 Heading</h1>
<p>Doloremque dolor voluptas est sequi omnis. Pariatur ut aut. Sed enim tempora qui veniam qui cum vel.
Voluptas odit at vitae minima. In assumenda ut. Voluptatem totam impedit accusantium reiciendis excepturi aut qui accusamus praesentium.</p>
<h2>H2 Heading</h2>
<p>Doloremque dolor voluptas est sequi omnis. Pariatur ut aut. Sed enim tempora qui veniam qui cum vel.
Voluptas odit at vitae minima. In assumenda ut. Voluptatem totam impedit accusantium reiciendis excepturi aut qui accusamus praesentium.</p>
<h3>H3 Heading</h3>
<p>Doloremque dolor voluptas est sequi omnis. Pariatur ut aut. Sed enim tempora qui veniam qui cum vel.
Voluptas odit at vitae minima. In assumenda ut. Voluptatem totam impedit accusantium reiciendis excepturi aut qui accusamus praesentium.</p>
</div>
<div class="column large-6 tab-12">
<h4>H4 Heading</h4>
<p>Doloremque dolor voluptas est sequi omnis. Pariatur ut aut. Sed enim tempora qui veniam qui cum vel.
Voluptas odit at vitae minima. In assumenda ut. Voluptatem totam impedit accusantium reiciendis excepturi aut qui accusamus praesentium.</p>
<h5>H5 Heading</h5>
<p>Doloremque dolor voluptas est sequi omnis. Pariatur ut aut. Sed enim tempora qui veniam qui cum vel.
Voluptas odit at vitae minima. In assumenda ut. Voluptatem totam impedit accusantium reiciendis excepturi aut qui accusamus praesentium.</p>
<h6>H6 Heading</h6>
<p>Doloremque dolor voluptas est sequi omnis. Pariatur ut aut. Sed enim tempora qui veniam qui cum vel.
Voluptas odit at vitae minima. In assumenda ut. Voluptatem totam impedit accusantium reiciendis excepturi aut qui accusamus praesentium.</p>
</div>
</div> <!-- end row -->
<div class="row h-add-half-bottom">
<div class="column large-6 tab-12">
<h3 class="h-add-bottom">Responsive Image</h3>
<figure>
<img src="images/wheel-500.jpg"
srcset="images/wheel-1000.jpg 1000w,
images/wheel-500.jpg 500w"
sizes="(max-width: 1000px) 100vw, 1000px" alt="">
<figcaption>
Here is some random picture.
</figcaption>
</figure>
</div>
<div class="column large-6 tab-12">
<h3 class="h-add-bottom">Responsive video</h3>
<div class="video-container">
<iframe title="vimeo-player" src="https://player.vimeo.com/video/14592941" width="640" height="360" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div> <!-- end row -->
<div class="row h-add-bottom">
<div class="column large-12">
<h3>Tables</h3>
<p>Be sure to use properly formed table markup with <code><thead></code> and <code><tbody></code> when building a <code>table</code>.</p>
<div class="table-responsive">
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Sex</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>William J. Seymour</td>
<td>34</td>
<td>Male</td>
<td>Azusa Street</td>
</tr>
<tr>
<td>Jennie Evans Moore</td>
<td>30</td>
<td>Female</td>
<td>Azusa Street</td>
</tr>
</tbody>
</table>
</div>
</div>
</div> <!-- end row -->
<div class="row">
<div class="column large-12">
<h3>Pagination</h3>
<nav class="pgn">
<ul>
<li>
<a class="pgn__prev" href="#0">
<svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.707 17.293L8.414 13H18v-2H8.414l4.293-4.293-1.414-1.414L4.586 12l6.707 6.707z"/></svg>
</a>
</li>
<li><a class="pgn__num" href="#0">1</a></li>
<li><span class="pgn__num current">2</span></li>
<li><a class="pgn__num" href="#0">3</a></li>
<li><a class="pgn__num" href="#0">4</a></li>
<li><a class="pgn__num" href="#0">5</a></li>
<li><span class="pgn__num dots">…</span></li>
<li><a class="pgn__num" href="#0">8</a></li>
<li>
<a class="pgn__next" href="#0">
<svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M11.293 17.293l1.414 1.414L19.414 12l-6.707-6.707-1.414 1.414L15.586 11H6v2h9.586z"/></svg>
</a>
</li>
</ul>
</nav>
</div>
</div> <!-- end row -->
<div class="row">
<div class="column large-6 tab-12">
<h3 class="h-add-bottom">Form Styles</h3>
<form>
<div>
<label for="sampleInput">Your email</label>
<input class="h-full-width" type="email" placeholder="[email protected]" id="sampleInput">
</div>
<div>
<label for="sampleRecipientInput">Reason for contacting</label>
<div class="ss-custom-select">
<select class="h-full-width" id="sampleRecipientInput">
<option value="Option 1">Questions</option>
<option value="Option 2">Report</option>
<option value="Option 3">Others</option>
</select>
</div>
</div>
<label for="exampleMessage">Message</label>
<textarea class="h-full-width" placeholder="Your message" id="exampleMessage"></textarea>
<label class="h-add-bottom">
<input type="checkbox">
<span class="label-text">Send a copy to yourself</span>
</label>
<input class="btn--primary h-full-width" type="submit" value="Submit">
</form>
</div>
<div class="column large-6 tab-12">
<h3>Alert Boxes</h3>
<br>
<div class="alert-box alert-box--error">
<p>Error Message. Your Message Goes Here.</p>
<span class="alert-box__close"></span>
</div><!-- end error -->
<div class="alert-box alert-box--success">
<p>Success Message. Your Message Goes Here.</p>
<span class="alert-box__close"></span>
</div><!-- end success -->
<div class="alert-box alert-box--info">
<p>Info Message. Your Message Goes Here.</p>
<span class="alert-box__close"></span>
</div><!-- end info -->
<div class="alert-box alert-box--notice">
<p>Notice Message. Your Message Goes Here.</p>
<span class="alert-box__close"></span>
</div><!-- end notice -->
</div>
</div> <!-- end row -->
<div class="row">
<div class="large-12 column">
<h3 class="h-add-bottom">Grid Columns Samples</h3>
</div>
</div> <!-- Row End-->
<div class="row">
<div class="large-4 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
<div class="large-4 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
<div class="large-4 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
</div>
<div class="row">
<div class="large-3 tab-6 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
<div class="large-3 tab-6 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
<div class="large-3 tab-6 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
<div class="large-3 tab-6 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
</div>
<div class="row">
<div class="large-6 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
<div class="large-6 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
</div>
<div class="row">
<div class="large-8 tab-7 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
<div class="large-4 tab-5 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
</div>
<div class="row">
<div class="large-3 tab-5 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at.
</p>
</div>
<div class="large-9 tab-7 mob-12 column">
<p>
Cras aliquet. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor. Integer faucibus, eros ac molestie placerat, enim tellus varius lacus,
nec dictum nunc tortor id urna. Suspendisse dapibus ullamcorper pede. Vivamus ligula ipsum,
faucibus at, tincidunt eget, porttitor non, dolor.
</p>
</div>
</div>
</section> <!-- end s-styles -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact target-section">
<div class="row s-contact__header">
<div class="column large-12">
<h3 class="section-header-allcaps">Say Hello</h3>
</div>
</div>
<div class="row s-contact__content">
<div class="column large-7 medium-12">
<h4 class="huge-text">
Have a new project in mind? Let's collaborate and build something awesome.
Let's turn that idea to an even greater product :)
</h4>
</div>
<div class="column large-4 medium-12">
<div class="row contact-infos">
<div class="column large-12 medium-6 tab-12">
<div class="contact-block">
<h5 class="contact-block__header">
Email
</h5>
<p class="contact-block__content">
<a class="mailtoui" href="mailto:[email protected]">[email protected]</a>
</p>
</div> <!-- end contact-block -->
</div>
<div class="column large-12 medium-6 tab-12">
<div class="contact-block">
<h5 class="contact-block__header">
Phone
</h5>
<p class="contact-block__content">
<a href="tel:+1975432345">+197 543 2345</a>
</p>
</div> <!-- end contact-block -->
</div>
<div class="column large-12">
<a href="mailto:[email protected]" class="mailtoui btn btn--primary h-full-width">Let's Talk</a>
</div>
</div> <!-- end contact-infos -->
</div>
</div> <!-- s-contact__content -->
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer class="s-footer">
<div class="row">
<div class="column large-4 medium-6 w-1000-stack s-footer__social-block">
<ul class="s-footer__social">
<li><a href="#0"><i class="fab fa-facebook-f" aria-hidden="true"></i></a></li>
<li><a href="#0"><i class="fab fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#0"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="#0"><i class="fab fa-dribbble" aria-hidden="true"></i></a></li>
<li><a href="#0"><i class="fab fa-linkedin-in" aria-hidden="true"></i></a></li>
</ul>
</div>
<div class="column large-7 medium-6 w-1000-stack ss-copyright">
<span>© Copyright Ceevee 2021</span>
<span>Design by <a href="https://www.styleshout.com/">StyleShout</a></span>
</div>
</div>
<div class="ss-go-top">
<a class="smoothscroll" title="Back to Top" href="#top">
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 4h12v2H6zm5 10v6h2v-6h5l-6-6-6 6z"/></svg>
</a>
</div> <!-- end ss-go-top -->
</footer>
<!-- Java Script
================================================== -->
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>