-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
45 lines (45 loc) · 1.38 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
<html>
<head>
<title>Pixie for Arduino</title>
<style>
body{
background-color:#080808;
color:#ccc;
font-size:22px;
font-family: 'Source Sans Pro', sans-serif;
}
a{
color:#b2ff68;
text-decoration:none;
}
a:hover{
color:#eeeeee;
}
.button_link{
border: 1px solid #b2ff68;
background-color: none;
display: inline-block;
padding: 10px;
border-radius: 5px;
margin-bottom: 10px;
}
.button_link:hover{
background-color: #b2ff68;
color:#000;
cursor:pointer;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;1,400;1,600&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div style="text-align:center; margin-top:60px;">
<img src="extras/img/logo.png" width="250px"/><br><br><br>
<a href="extras/documentation.html"><div class="button_link">SOFTWARE DOCUMENTATION</div></a><br>
<a href="extras/datasheet.html"><div class="button_link">HARDWARE DATASHEET</div></a><br>
<a href="extras/icon_generator.html"><div class="button_link">ICON GENERATOR</div></a><br>
<a href="https://github.com/connornishijima/Pixie"><div class="button_link">GITHUB</div></a><br>
</div>
</body>
</html>