Skip to content

Commit 7e6827d

Browse files
committed
Initial release
0 parents  commit 7e6827d

38 files changed

+4559
-0
lines changed

css/animate.css

+3,158
Large diffs are not rendered by default.

css/responsive.css

+208
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
/* Medium Devices, Desktops */
2+
@media only screen and (max-width: 1024px) {
3+
h1 {
4+
font-size: 120px;
5+
}
6+
h3 {
7+
font-size: 20px;
8+
}
9+
.sectionhead {
10+
padding: 0 75px;
11+
}
12+
.calltoaction img {
13+
margin-left: -60px;
14+
}
15+
.bigtag {
16+
left: 320px;
17+
}
18+
.smalltag {
19+
top: 60px;
20+
left: 80px;
21+
-webkit-transform: rotate(351deg) scale(.7);
22+
-moz-transform: rotate(351deg) scale(.7);
23+
-o-transform: rotate(351deg) scale(.7);
24+
-ms-transform: rotate(351deg) scale(.7);
25+
}
26+
}
27+
28+
/* Small Devices, Tablets */
29+
@media only screen and (max-width: 980px) {
30+
body {
31+
text-align: center;
32+
}
33+
h1 {
34+
font-size: 110px;
35+
}
36+
h3 {
37+
font-size: 18px;
38+
}
39+
.santa {
40+
margin-right: -170px;
41+
overflow: hidden;
42+
}
43+
.sectionhead {
44+
padding: 0;
45+
}
46+
.calltoaction img {
47+
margin-left: 0px;
48+
}
49+
.productimg {
50+
margin-bottom: 20px;
51+
}
52+
.bigtag {
53+
top: 20px;
54+
left: 500px;
55+
}
56+
.smalltag {
57+
left: 370px;
58+
top: 110px;
59+
}
60+
}
61+
62+
/* Smaller Devices */
63+
@media only screen and (max-width: 800px) {
64+
h1 {
65+
font-size: 95px;
66+
}
67+
h3 {
68+
font-size: 16px;
69+
margin: 0px;
70+
}
71+
.btn-reverse {
72+
padding: 15px 50px;
73+
}
74+
#hero {
75+
height: 500px;
76+
}
77+
.santa {
78+
margin-right: -70px;
79+
}
80+
}
81+
82+
/* Mobile Devices */
83+
@media only screen and (max-width: 640px) {
84+
.sticky-container,
85+
.santa {
86+
display: none;
87+
}
88+
h1 {
89+
font-size: 75px;
90+
}
91+
h3 {
92+
font-size: 13px;
93+
margin: 0px;
94+
}
95+
.btn-reverse {
96+
padding: 10px 20px;
97+
}
98+
#hero {
99+
height: 360px;
100+
}
101+
#hero .container {
102+
padding-top: 30px;
103+
}
104+
#hero p {
105+
padding-top: 60px;
106+
}
107+
.bigbell {
108+
height: 160px;
109+
margin-top: -25px;
110+
}
111+
.bigtag {
112+
left: 450px;
113+
}
114+
.smalltag {
115+
left: 320px;
116+
}
117+
input,
118+
.btn-inverse {
119+
padding: 15px 30px;
120+
width: 85%;
121+
margin: 20px 0 0 0;
122+
}
123+
}
124+
125+
/* Smaller Mobile Devices */
126+
@media only screen and (max-width: 480px) {
127+
h1 {
128+
font-size: 60px;
129+
}
130+
h2 {
131+
font-size: 20px;
132+
}
133+
h3 {
134+
font-size: 12px;
135+
margin: 0px;
136+
}
137+
.sectionhead p {
138+
font-size: 14px;
139+
}
140+
#hero {
141+
height: 320px;
142+
}
143+
#hero .btn {
144+
margin-top: 10px;
145+
}
146+
.calltoaction img {
147+
max-width: 100%;
148+
}
149+
.bigtag {
150+
left: 350px;
151+
}
152+
.smalltag {
153+
left: 240px;
154+
}
155+
.logo {
156+
font-size: 28px;
157+
}
158+
}
159+
160+
/* Even Smaller Mobile Devices */
161+
@media only screen and (max-width: 360px) {
162+
h1 {
163+
font-size: 50px;
164+
}
165+
.btn-reverse {
166+
padding: 10px;
167+
}
168+
#hero .container {
169+
padding-top: 50px;
170+
}
171+
.optional {
172+
display: none;
173+
}
174+
.bigbell {
175+
margin-top: -50px;
176+
}
177+
.bigtag {
178+
left: 270px;
179+
}
180+
.smalltag {
181+
left: 180px;
182+
}
183+
#products {
184+
background: none;
185+
}
186+
}
187+
188+
/* Smallest Mobile Devices */
189+
@media only screen and (max-width: 320px) {
190+
h1 {
191+
font-size: 40px;
192+
}
193+
h2 {
194+
font-size: 17px;
195+
}
196+
#hero p {
197+
padding-top: 40px;
198+
}
199+
#overview {
200+
padding-top: 50px;
201+
}
202+
.bigbell {
203+
margin-top: -30px;
204+
}
205+
.bigtag {
206+
left: 230px;
207+
}
208+
}

0 commit comments

Comments
 (0)