-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (89 loc) · 3.02 KB
/
index.html
File metadata and controls
98 lines (89 loc) · 3.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons8-cat-ios-17-glyph-16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons8-cat-ios-17-glyph-32.png">
<title>catwithninelives.dev</title>
<style>
body {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-color: #000000;
color: cadetblue;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
.box {
border: 2px dashed #3E7373;
padding-left: 2em;
padding-right: 2em;
text-align: center;
border-radius: 8px;
animation: pulse 2s infinite ease-in-out;
}
.contact-strip {
margin-top: 2rem;
font-size: 1rem;
letter-spacing: 0.5px;
padding: 0.5em 1em;
color: cadetblue;
text-align: center;
width: 100%;
max-width: 600px;
word-break: break-word;
}
.contact-strip a {
color:cadetblue;
text-decoration: none;
}
.contact-strip a:hover {
text-decoration: underline;
}
.credit-watermark {
position: fixed;
bottom: 10px;
right: 10px;
background-color: rgba(0, 0, 0, 0.6); /* semi-transparent */
color: #6FB7BD;
font-size: 0.95em;
padding: 6px 10px;
border-radius: 6px;
z-index: 9999;
text-align: center;
}
.credit-watermark a {
color: #6FB7BD;
text-decoration: none;
}
.credit-watermark a:hover {
text-decoration: underline;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 #507A7E;
}
70% {
box-shadow: 0 0 0 8px rgba(62, 115, 115, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(62, 115, 115, 0);
}
}
</style>
</head>
<body>
<div class="box">
<h1>🚧 Work in Progress 👷🏽♀️🛠️</h1>
</div>
<div class="contact-strip">
Contact : <a href="mailto:niveditasingh0627@gmail.com">niveditasingh0627@gmail.com</a>
</div>
<div class="credit-watermark">
<a target="_blank" href="https://icons8.com/icon/100068/cat">Cat</a> icon by
<a target="_blank" href="https://icons8.com">Icons8</a>
</div>
</body>
</html>