-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (79 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Astra</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body class="w-full h-screen relative">
<div style="background:radial-gradient(circle, rgba(2, 0, 36, 0) 0, #fafafa 150%);position:absolute;content:'';z-index:2;width:100%;height:100%;top:0"></div>
<div style="content:'';background-image:url(https://d2vwwcvoksz7ty.cloudfront.net/grid.svg);z-index:1;position:absolute;width:100%;height:100%;top:0;opacity:0.4;filter:invert(1)"></div>
<div class="flex items-center w-full h-full relative" style="margin: 0 5%;z-index: 4;">
<div class="w-1/2">
<div class="text-8xl font-bold text-gray-800">
<div class="relative flex items-center">
Astra
<span class="w-full h-1 bg-black" style="margin: 0 7% 0 4%;"></span>
</div>
<div>
Browser extension for <span class="text-blue-500">Developers</span>
</div>
<div class="button mt-10 text-4xl github-button px-8">
<img src="./github_icon.png" alt="" class="w-7 h-7 mr-5">
Follow on Github
</div>
</div>
</div>
<div class="relative ml-24">
<div class="gradient opacity-60 mx-auto absolute"></div>
<div class="flex">
<div class="card">
<div>
<div class="">
<div class="text-2xl font-bold text-gray-800 relative flex items-center">
Pixel Perfect
</div>
<div class="text-lg font-normal mt-3">
Pixel Perfect is a browser extension that provides a set of tools for developers to measure, align and inspect everything on the screen.
</div>
</div>
</div>
<div class="flex justify-between items-center">
<div class="button w-full">
<img src="./chrome_icon.png" alt="" class="w-6 h-6 mr-3">
Install
</div>
<div class="ml-8 font-bold text-muted cursor-pointer" style="width: -webkit-fill-available;">More Info</div>
</div>
</div>
</div>
<div class="flex mt-10 ml-64">
<div class="card ml-8">
<div>
<div class="">
<div class="text-2xl font-bold text-gray-800 relative flex items-center">
Dark Mode
</div>
<div class="text-lg font-normal mt-3">
Dark Mode is a browser extension that helps you quickly turn the screen (browser) to dark at night time.
</div>
</div>
</div>
<div class="flex justify-between items-center">
<div class="button w-full">
<img src="./chrome_icon.png" alt="" class="w-6 h-6 mr-3">
Install
</div>
<div class="ml-8 font-bold text-muted cursor-pointer" style="width: -webkit-fill-available;">More Info</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>