-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 2.1 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>leanscript</title>
<link rel="icon" href="./leanscript.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
<style>
:root {
background:black;
}
.app-item {
border-bottom: 5px solid transparent;
}
.app-item:hover {
border-bottom: 5px solid white;
transition: all 300ms;
}
</style>
</head>
<body>
<nav class="navigation">
<section class="container">
<a class="navigation-title row" href="https://github.com/leanscript" title="Milligram - A minimalist CSS framework">
<img src="./leanscript.png" style="width: 40px;height: 40px;" />
<p style="font-size:20px;font-weight:bold;color:white;margin-left:10px;margin-top:5px">leanscript</p>
</a>
</section>
</nav>
<div class="container">
<div class="row" style="margin-top:25%">
<a href="https://leanscript.github.io/quark/" target="_blank" class="column app-item" style="cursor:pointer;text-align: center;">
<img class="" style="width:200px;" src="./quark.svg" />
<p style="color:white;font-weight: bold;font-size: 20px;">quark</p>
</a>
<a href="https://leanscript.github.io/supernova/" target="_blank" class="column app-item" style="cursor:pointer;text-align: center;">
<img style="width:200px;" src="./supernova.png" />
<p style="color:white;font-weight: bold;font-size: 20px;">supernova</p>
</a>
<a href="https://leanscript.github.io/vtc/" target="_blank" class="column app-item" style="cursor:pointer;text-align: center;">
<img style="width:200px;" src="./vtc.png" />
<p style="color:white;font-weight: bold;font-size: 20px;">vtc</p>
</a>
</div>
</div>
</body>
</html>