-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (116 loc) · 3.51 KB
/
index.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<title>lanista.art</title>
<link rel="icon" type="image/png" href="/assets/imgs/logo.png" />
<meta property="og:title" content="lanista.art" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lanista.art" />
<meta property="og:image" content="https://lanista.art/assets/imgs/logo.png" />
<meta property="og:description" content="Authentic handmade art by Gaba" />
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto');
.container {
/* Center vertically and horizontally */
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
video {
max-width: 100%;
height: auto;
}
.link-naked {
text-decoration: none;
}
.instagram {
width: 120px;
height: 28px;
border: 1px solid #44b9cc;
color: #44b9cc;
border-radius: 5px;
}
.instagram:hover {
background-color: #44b9cc;
color: #FFF;
}
.igdisplay {
padding: 2px 10px 2px 10px;
}
.iglogo {
float: left;
width: 24px;
height: 24px;
background: linear-gradient(to bottom right,#feda75, #fa7e1e, #d62976, #962fbf);
border-radius: 20%;
}
.igcontainer {
width: 100%;
height: 100%;
float: left;
padding-top: 1px;
}
.igcamera {
margin: auto;
width: 70%;
height: 70%;
border-radius: 25%;
background: transparent;
border: 2px solid #FFF;
}
.iglens {
width: 40%;
height: 40%;
border: 2px solid #FFF;
border-radius: 100%;
margin-left: 17%;
}
.igflash {
background-color: #FFF;
width: 14%;
height: 14%;
border-radius: 100%;
margin-top: 10%;
margin-left: 70%;
}
.igtext {
font-family: 'Roboto', sans-serif;
font-size: 18px;
}
.igtext-container {
padding: 2px 0px 0px 34px;
}
</style>
</head>
<body>
<div class="main">
<div class="container">
<video autoplay loop muted playsinline poster="/assets/imgs/coming_soon.jpg">
<source src="/assets/vids/coming_soon.mp4" type="video/mp4">
Coming soon...
</video>
</div>
<div class="container">
<a class="link-naked" href="https://www.instagram.com/lanista.art">
<div class="instagram">
<div class="igdisplay">
<div class="iglogo">
<div class="igcontainer">
<div class="igcamera">
<div class="igflash"></div>
<div class="iglens"></div>
</div>
</div>
</div>
<div class="igtext">
<div class="igtext-container">Follow</div>
</div>
</div>
</div>
</a>
</div>
</div>
</body>
</html>