forked from FuelLabs/sway-applications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (102 loc) · 2.69 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
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sway Applications</title>
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Roboto";
background-color: rgb(240, 240, 240);
margin: 0;
}
.flex-container {
display: flex;
margin-left: 150px;
margin-right: 150px;
margin-top: 50px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
height: 142px;
width: 280px;
justify-content: center;
display: flex;
flex-direction: column;
border-radius: 12px;
margin: 16px;
padding: 16px;
background-color: white;
}
.card-text {
color: black;
font-size: 16px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.text1 {
font-size: 44px;
color: black;
margin-bottom: 4px;
margin-top: 16px;
}
.text2 {
font-size: 36px;
color: black;
margin-bottom: 4px;
margin-top: 16px;
}
.header {
display: flex;
align-content: center;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding-top: 22px;
padding-bottom: 22px;
background-color: rgb(250, 250, 250);
}
</style>
</head>
<body>
<div class="header">
<img
src="public/fuel-logo-64.png"
alt="Fuel Logo"
style="margin-right: 15px"
/>
<div style="font-size: 36px; color: black; width: fit-content">
Sway Applications
</div>
</div>
<div class="flex-container">
<a href="/tictactoe/" style="text-decoration: none">
<div class="card">
<p class="text1">Tic Tac Toe</p>
<p class="card-text">
Play the classic game of Tic Tac Toe on the Fuel network.
</p>
</div>
</a>
<a
href="https://swayapps.fuel.network/book/"
style="text-decoration: none"
>
<div class="card">
<p class="text2">Sway App Book</p>
<p class="card-text">
Learn how to contribute to the Swap Applications repo.
</p>
</div>
</a>
</div>
</body>
</html>