-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
35 lines (35 loc) · 1.86 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./img/icon.png" type="image/x-icon">
<title>GeekBurguer</title>
<style>
body {
background: rgb(29,53,87);
background: linear-gradient(148deg, rgba(29,53,87,1) 0%, rgba(0,212,255,1) 100%);
}
</style>
</head>
<body class="body-bg min-h-screen bg-secondary pt-12 md:pt-20 px-6 md:px-0" style="font-family: 'Poppins', sans-serif;">
<header class="flex mx-auto align-center justify-center">
<img src="./img/icon.png" alt="Geek Burguer Logo" width="92" height="92" class="pr-5">
<h1 class="text-4xl font-light light text-center my-auto">geek<span class="font-black">Burguer</span></h1>
</header>
<main class="bg-light max-w-lg md:max-w-2xl mx-auto p-8 md:p-12 my-10 rounded-lg shadow-2xl">
<section class="p-8 flex align-center justify-center">
<h1 class="font-bold text-gray-600 text-2xl self-center">Acesso Realizado com Sucesso!</h1>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-circle-check" width="120" height="120" viewBox="0 0 24 24" stroke-width="2" stroke="#4CAF50" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<circle cx="12" cy="12" r="9" />
<path d="M9 12l2 2l4 -4" />
</svg>
</section>
</main>
</body>
</html>