-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-old.html
102 lines (88 loc) · 2.88 KB
/
index-old.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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap"
rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>LDM Community - Coming Soon!</title>
</head>
<style>
body,
html {
height: 100%;
margin: 0;
}
.bgimg {
background: linear-gradient(35deg, rgba(66, 171, 227, 1) 17%, rgba(115, 0, 255, 1) 100%);
height: 100%;
background-position: center;
background-size: cover;
position: relative;
/* font-family: "Courier New", Courier, monospace; */
/* font-size: 25px; */
}
.card {
background-color: white;
}
.topleft {
position: absolute;
top: 16px;
left: 16px;
}
.bottomleft {
position: absolute;
bottom: 0;
left: 16px;
}
.middle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
hr {
margin: auto;
width: 40%;
}
html {
overflow: hidden;
height: 100%;
}
body {
height: 100%;
overflow: auto;
}
</style>
<body>
<div class="bgimg">
<div class="topleft">
<img src="https://raw.githubusercontent.com/LDM-Community/LDM-Community.github.io/master/logo.svg" width="50%">
</div>
<div class="middle">
<div class="card" style="width: 40rem;">
<div class="media">
<div class="card-body media-body">
<h2 class="card-text"><b>Exciting things are on the way!</b></h2>
<p>We're working hard to put together a new site... but for now, check out our community-written
LDM documentation, or view our projects on GitHub.</p>
<a href="https://ldmcommunity.tk/docs" class="btn btn-primary">Go to Documentation</a>
<a href="https://github.com/LDM-Community/" class="btn btn-success"><i class="fa fa-github mt-0"></i> Visit our GitHub</a>
</div>
</div>
</div>
</div>
<div class="bottomleft">
<!-- <p>Some text</p> -->
</div>
</div>
</body>
</html>