forked from Zenux-Studios/Git_Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
51 lines (51 loc) · 1.15 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git code</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
margin: 0;
padding: 20px;
background: linear-gradient(135deg, #1e1e2f, #2a2a40);
color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
box-sizing: border-box;
width: 100vh;
}
h1 {
font-size: 28px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
footer {
margin-top: 30px;
font-size: 14px;
color: #cccccc;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.container {
background: rgba(0, 0, 0, 0.5);
padding: 20px;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Git code</h1>
</div>
<footer>
Credits: Zenux Studios
</footer>
</body>
</html>