-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (124 loc) · 4.12 KB
/
Copy pathindex.html
File metadata and controls
143 lines (124 loc) · 4.12 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>SlvCtrl+</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/8e74c2ff28.js" crossorigin="anonymous"></script>
<style type="text/css">
html, body {
height: 100%;
padding: 0;
margin: 0;
}
/* green: rgb(0,189,126); */
body {
height: 100%;
background-color: rgb(18,18,18);
font-size: 20px;
font-family: sans-serif;
display: flex;
align-items: center;
align-content : center;
justify-content: center;
-webkit-align-items: center;
}
.content {
max-width: 1024px;
margin: -3.5em 0 0 0;
padding: 1em;
display: flex;
flex-direction: column;
}
.content h1 {
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
text-align: center;
font-size: 2.5em;
background-color: #111;
color: #fff;
padding: 0.25em 0.5em;
margin: 0;
}
.content p,
.content ul li {
line-height: 1.75em;
}
.content footer {
color: #aaaaaa;
font-size: 0.75em;
}
.content header,
.content footer {
margin: 1.75em 0;
}
.content header {
margin-top: 0;
display: flex;
justify-content: center;
flex-direction: column;
}
.links {
list-style: none;
padding: 0;
margin: 0;
width: 350px;
max-width: 100%;
}
.links li {
margin-top: 0.5em;
}
.links li:first-child {
margin-top: 0;
}
.links li a {
display: block;
background-color: #aaaaaa;
padding: 0.5em 0.6em;
color: #fff;
text-decoration: none;
}
.links li a i {
display: inline-block;
text-align: center;
width: 1.25em;
margin: 0 0.25em 0 0;
}
.links li a.link-get-started {
background-color: rgb(0,189,126);
}
.links li a.link-github {
background-color: rgb(43,49,55);
}
.links li a.link-discord {
background-color: rgb(114,137,218);
}
.links li a.link-twitter {
background-color: rgb(29 161 242);
}
@media (orientation: landscape) {
.content {
flex-direction: row;
margin: 0;
}
.content header {
margin: 0 1.75em 0 0;
}
}
</style>
</head>
<body>
<div class="content">
<header>
<h1>SlvCtrl+</h1>
</header>
<main>
<ul class="links">
<li><a href="https://github.com/SlvCtrlPlus/slvctrlplus-doc" class="link-get-started"><i class="fa-solid fa-bolt"></i> Get started</a></li>
<li><a href="https://github.com/SlvCtrlPlus" class="link-github"><i class="fa-brands fa-github-alt"></i> GitHub</a></li>
<li><a href="https://discord.gg/hpfJadfUFf" class="link-discord"><i class="fa-brands fa-discord"></i> Discord</a></li>
<li><a href="https://twitter.com/slvctrlplus" class="link-twitter"><i class="fa-brands fa-twitter"></i> Twitter (X)</a></li>
</ul>
</main>
</div>
</body>
</html>