-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (101 loc) · 2.28 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
body {
font-family: Sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
header {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(1, 1fr);
box-sizing: border-box;
margin: 0 auto;
}
.section:hover {
background: rgba(0,100,200, 0.1);
}
.section {
cursor: pointer;
color: rgba(0,0,0,0.6);
text-align:center;
display: block;
text-decoration: none;
padding: 20px;
background: rgba(0,100,200, 0.04);
margin: 10px;
border-radius: 20px;
font-size: 14px;
}
.section h1 {
color: black;
font-size: 20px;
margin: 0;
margin-bottom: 10px;
}
.section h1 i {
font-size: 30px;
padding: 10px;
}
nav {
margin-bottom: 10px;
padding: 0 10px;
display: flex;
align-items: center;
text-transform: lowercase;
}
nav img {
width: 50px;
}
nav h1 {
margin: 0;
font-size: 30px;
letter-spacing: -2px;
}
main {
max-width: 1000px;
}
</style>
</head>
<body>
<main>
<nav>
<img src="pinokio.png">
<h1>pinokio portal</h1>
</nav>
<header>
<!--
<a target="_blank" class='section' href="https://github.com/pinokiofactory/factory/discussions">
<h1>
<i class="fa-regular fa-circle-question"></i>
<div>Forum</div>
</h1>
<div>Ask questions, share scripts, etc.</div>
</a>
-->
<a target="_blank" class='section' href="https://x.com/cocktailpeanut">
<h1>
<i class="fa-brands fa-x-twitter"></i>
<div>News</div>
</h1>
<div>Follow pinokio updates on X</div>
</a>
<!--
<a target="_blank" class='section' href="https://discord.gg/TQdNwadtE4">
-->
<a target="_blank" class='section' href="https://discord.com/channels/1121039057993089076/1131623060315844710">
<h1>
<i class="fa-brands fa-discord"></i>
<div>Chat</div>
</h1>
<div>Pinokio users discord</div>
</a>
</header>
</main>
</body>
<html>