Skip to content

Commit abdf6d3

Browse files
Sheradyn MikulSheradyn Mikul
authored andcommitted
Adding new contact demo
1 parent 099f06c commit abdf6d3

File tree

16 files changed

+380
-0
lines changed

16 files changed

+380
-0
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.DS_Store
33
.DS_Store
44
.DS_Store
5+
.DS_Store

contact/coupon.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<!-- Required meta tags -->
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<meta name="apple-mobile-web-app-capable" content="yes">
8+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
9+
10+
<!-- Bootstrap CSS -->
11+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
12+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Comfortaa:300,400,700">
13+
<link rel="stylesheet" href="css/main.css">
14+
15+
<title>SnowShoe Demos</title>
16+
</head>
17+
<body class="bg_indigo" onclick="location.href='index.html'">
18+
<div class="d-flex w-100 h-100 mx-auto flex-column">
19+
<header class="mb-auto" style="z-index:0;">
20+
<nav class="navbar fixed-top">
21+
<div class="mx-auto">
22+
<span class="navbar-text"><img src="img/logo.svg" class="img-fluid" width="120" onclick="location.href='index.html'"></span>
23+
</div>
24+
</nav>
25+
</header>
26+
<main>
27+
<div class="container text-center">
28+
<div class="row">
29+
<div class="col">
30+
<img src="img/coupon.svg" class="img-fluid" style="max-height: 20vh;">
31+
</div>
32+
</div>
33+
<div class="row mt-4">
34+
<div class="col">
35+
<h1>10% off</h1>
36+
<p class="lead">All bakery items today only</p>
37+
</div>
38+
</div>
39+
</div>
40+
</main>
41+
<footer class="mt-auto" style="z-index:0;">
42+
<nav class="navbar fixed-bottom">
43+
<div class="mx-auto">
44+
<span class="navbar-text">
45+
<!-- <strong>Stamp: </strong>Test -->
46+
</span>
47+
</div>
48+
</nav>
49+
</footer>
50+
</div>
51+
52+
<!-- Optional JavaScript -->
53+
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
54+
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
55+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
56+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
57+
</body>
58+
</html>

contact/css/main.css

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
html, body {
2+
height: 100%;
3+
font-family: 'Comfortaa', sans-serif;
4+
color: #FFFFFF;
5+
}
6+
7+
.container {
8+
padding: 2rem;
9+
}
10+
11+
.btn-group-lg>.btn, .btn-lg {
12+
padding: 1rem 2rem;
13+
}
14+
15+
/* Background colors */
16+
.bg_snowshoe_blue { background-color: #00AEE4 }
17+
.bg_red { background-color: #f44336 }
18+
.bg_pink { background-color: #E91E63 }
19+
.bg_purple { background-color: #9C27B0 }
20+
.bg_deep_purple { background-color: #673AB7 }
21+
.bg_indigo { background-color: #3F51B5 }
22+
.bg_blue { background-color: #2196F3 }
23+
.bg_light_blue { background-color: #03A9F4 }
24+
.bg_cyan { background-color: #00BCD4 }
25+
.bg_teal { background-color: #009688 }
26+
.bg_green { background-color: #4CAF50 }
27+
.bg_light_green { background-color: #8BC34A }
28+
.bg_lime { background-color: #CDDC39 }
29+
.bg_yellow { background-color: #FFEB3B }
30+
.bg_amber { background-color: #FFC107 }
31+
.bg_orange { background-color: #FF9800 }
32+
.bg_deep_orange { background-color: #FF5722 }
33+
.bg_brown { background-color: #795548 }
34+
.bg_grey { background-color: #9E9E9E }
35+
.bg_blue_grey { background-color: #607D8B }
36+
37+
.modal {
38+
display: none; /* Hidden by default */
39+
position: fixed; /* Stay in place */
40+
left: 0;
41+
top: 0;
42+
width: 100%; /* Full width */
43+
height: 100%; /* Full height */
44+
overflow: auto; /* Enable scroll if needed */
45+
background-color: rgb(0,0,0); /* Fallback color */
46+
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
47+
}
48+
49+
.stamp-result {
50+
height: 100%;
51+
width: 100%;
52+
position: fixed;
53+
top: 0;
54+
left: 0;
55+
}
56+
57+
.ping {
58+
-webkit-animation: ping 1s ease-in-out infinite alternate both;
59+
animation: ping 1s ease-in-out infinite alternate both;
60+
}
61+
62+
/* ----------------------------------------------
63+
* Generated by Animista on 2018-10-16 0:24:7
64+
* w: http://animista.net, t: @cssanimista
65+
* ---------------------------------------------- */
66+
67+
/**
68+
* ----------------------------------------
69+
* animation ping
70+
* ----------------------------------------
71+
*/
72+
@-webkit-keyframes ping {
73+
0% {
74+
-webkit-transform: scale(1);
75+
transform: scale(1);
76+
}
77+
50% {
78+
-webkit-transform: scale(0.9);
79+
transform: scale(0.9);
80+
}
81+
100% {
82+
-webkit-transform: scale(1);
83+
transform: scale(1);
84+
}
85+
}
86+
@keyframes ping {
87+
0% {
88+
-webkit-transform: scale(1);
89+
transform: scale(1);
90+
}
91+
50% {
92+
-webkit-transform: scale(0.9);
93+
transform: scale(0.9);
94+
}
95+
100% {
96+
-webkit-transform: scale(1);
97+
transform: scale(1);
98+
}
99+
}
100+
101+
/* Extra small devices (portrait phones, less than 576px) */
102+
/* No media query for `xs` since this is the default in Bootstrap */
103+
104+
/* Small devices (landscape phones, 576px and up) */
105+
@media (max-width: 576px) {}
106+
107+
/* Medium devices (tablets, 768px and up) */
108+
@media (max-width: 768px) {}
109+
110+
/* Large devices (desktops, 992px and up) */
111+
@media (max-width: 992px) {}
112+
113+
/* Extra large devices (large desktops, 1200px and up) */
114+
@media (max-width: 1200px) {}

contact/img/conference1.jpg

75.1 KB
Loading

contact/img/conference2.jpg

153 KB
Loading

contact/img/conference3.jpg

147 KB
Loading

contact/img/conference4.jpg

237 KB
Loading

contact/img/coupon.svg

Lines changed: 46 additions & 0 deletions
Loading

contact/img/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)