Skip to content

Commit cde9dcb

Browse files
committed
adding 2018 comming soon page
1 parent 0230c58 commit cde9dcb

34 files changed

+12776
-1
lines changed

2018/css/font-awesome.min.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2018/css/ie.css

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
.contact a.mail:hover {
2+
text-decoration: underline;
3+
}
4+
5+
6+
.contact .icons li a:hover {
7+
border-bottom: 5px solid transparent;
8+
}
9+
10+
/* HERO */
11+
h1 { font-size: 120px; line-height: 120px; }
12+
.sub-title { font-size: 20px; line-height: 20px; margin-top: 20px; }
13+
/* TITLE & CONTACT */
14+
.title { top: 15%;}
15+
.contact { bottom: 8%; }
16+
.contact .icons { margin-bottom: 12px; }
17+
/* SIZES */
18+
.sphere img{
19+
-webkit-transform: scale(1);
20+
-moz-transform: scale(1);
21+
transform: scale(1);
22+
}
23+
.depth-5 img, .depth-4 img, .depth-3 img, .depth-2 img, .depth-1 img {
24+
-webkit-transform: scale(0.8);
25+
-moz-transform: scale(0.8);
26+
transform: scale(0.8);
27+
}
28+
/* POSITIONING */
29+
.depth-5 {
30+
right: -25%;
31+
top: 3%;
32+
}
33+
34+
.depth-4 {
35+
left: -3%;
36+
top: 15%;
37+
}
38+
39+
.depth-3.flake1 {
40+
display: none;
41+
}
42+
43+
.depth-3.flake2 {
44+
right: 25%;
45+
bottom: 25%;
46+
}
47+
48+
.depth-3.flake3 {
49+
left: 20%;
50+
bottom: 20%;
51+
}
52+
53+
.depth-3.flake4 {
54+
display: block;
55+
position: absolute;
56+
left: 10%;
57+
bottom: 40%;
58+
}
59+
60+
.depth-2.flake1 {
61+
display: none;
62+
}
63+
64+
.depth-2.flake2 {
65+
display: none;
66+
}
67+
68+
.depth-1.flake1 {
69+
display: none;
70+
}
71+
72+
.depth-1.flake2 {
73+
display: block;
74+
left: 15%;
75+
top: 25%;
76+
}
77+
78+
.depth-1.flake3 {
79+
display: none;
80+
}
81+
82+
.depth-1.flake4 {
83+
display: none;
84+
}

2018/css/loader.css

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/* =Loader
2+
-------------------------------------------------------------- */
3+
4+
.preloader {
5+
display: block;
6+
position: fixed;
7+
width: 100%;
8+
height: 100%;
9+
z-index: 9999;
10+
background: white;
11+
text-align: center;
12+
}
13+
.loading {
14+
overflow: hidden;
15+
position: absolute;
16+
top: 50%;
17+
margin-top: -12px;
18+
left: 50%;
19+
margin-left: -50px;
20+
width: 100px;
21+
height: 24px;
22+
}
23+
24+
.progress {
25+
display: block;
26+
position: absolute;
27+
bottom: 0;
28+
overflow: hidden;
29+
width: 100px;
30+
height: 1px;
31+
left: -102px;
32+
background-color: #00d9ec;
33+
-webkit-animation: loader-anim 1s 0s infinite cubic-bezier(0.785, 0.135, 0.15, 0.86);
34+
-moz-animation: loader-anim 1s 0s infinite cubic-bezier(0.785, 0.135, 0.15, 0.86);
35+
animation: loader-anim 1s 0s infinite cubic-bezier(0.785, 0.135, 0.15, 0.86)
36+
}
37+
38+
@-webkit-keyframes loader-anim {
39+
0% {
40+
left: -102px
41+
}
42+
43+
100% {
44+
left: 102px
45+
}
46+
}
47+
48+
@-moz-keyframes loader-anim {
49+
0% {
50+
left: -102px
51+
}
52+
53+
100% {
54+
left: 102px
55+
}
56+
}
57+
58+
@keyframes loader-anim {
59+
0% {
60+
left: -102px
61+
}
62+
63+
100% {
64+
left: 102px
65+
}
66+
}

0 commit comments

Comments
 (0)