-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./images/raoatech.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="public/tailwind.css" />
<script defer src="public/main.js"></script>
<title>RAOATECH</title>
</head>
<body>
<div
class="outfit-bold large__screen fixed left-0 right-0 hidden justify-center content-center items-center w-full h-full z-[1000] bg-[#CDCFCE] text-[1.5rem]"
>
Hey, switch to mobile to enjoy the full experience 😊
</div>
<div
class="preloader flex flex-col justify-center content-center z-[100] bg-[#e9efff] top-0 left-0 fixed w-full h-full"
>
<img
src="./images/raoatech-big.png"
alt="raoatech logo"
class="-mt-[20rem] z-50 md:w-[40rem] md:ml-[5.5rem]"
/>
<div
class="text flex justify-between content-center items-center absolute bottom-[7rem] ml-[7rem] md:ml-[20rem] md:bottom-[10rem]"
>
<p
class="text-white text-[1.3rem] outfit-regular tracking-[0.38px] leading-6"
>
Please Wait
</p>
<div class="loader ml-4"></div>
</div>
<p
class="absolute bottom-0 ml-[5rem] text-white outfit-semibold opacity-20 md:ml-[19rem] md:bottom-[2rem]"
>
POWERED BY RAOATECH
</p>
<div
class="bg-[#2B5587] h-[15rem] w-full rounded-tr-[9rem] -z-10 absolute bottom-0 md:h-[20rem]"
></div>
</div>
<section class="welcome">
<h1 class="welcome__text outfit-bold">Welcome!</h1>
<div class="welcome__img">
<img src="./images/designer-desk.png" alt="desk" />
</div>
<div class="welcome__links">
<a href="public/register.html"
><button class="sign_in outfit-medium">Staff</button></a
>
<button class="sign_in outfit-medium">Visitor</button>
</div>
<p
class="text-white text-center mt-[3rem] text-[0.75rem] outfit-semibold opacity-20"
>
POWERED BY RAOATECH
</p>
<div class="curve"></div>
</section>
</body>
</html>