-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
49 lines (49 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Deploy com GitHub Actions</title>
<link
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body class="bg-gray-800">
<div
class="
container
mx-auto
max-w-sm
h-screen
flex flex-col
space-y-4
justify-center
items-center
"
>
<!-- VANESSA WEBER -->
<div
class="bg-white w-full flex items-center p-2 rounded-xl shadow border"
>
<div class="relative flex items-center space-x-4">
<img
src="http://github.com/vweberfroes.png"
alt="Vanessa Weber"
class="w-16 h-16 rounded-full"
/>
</div>
<div class="flex-grow p-3">
<div class="font-semibold text-gray-700">Vanessa Weber</div>
<div class="text-sm text-gray-500">@nessaweberfroes</div>
</div>
<div class="p-2">
<span
class="block h-4 w-4 bg-red-400 rounded-full bottom-0 right-0"
></span>
</div>
</div>
</div>
</body>
</html>