forked from Sulagna-Dutta-Roy/GGExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
width: 300px;
height: 300px;
background: url('AnimeWall.jpg') no-repeat center center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.container {
padding: 8px;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
background-color: white;
}
.Anime {
display: flex;
flex-direction: column;
align-items: center;
margin: auto 10px;
font-size: 1.125rem;
color: #3b82f6; /* blue-500 */
border-radius: 0.5rem;
border: 1px solid lightblue;
padding: 10px;
}
.quote {
font-size: 1.125rem;
margin-bottom: 8px;
}
.anime,
.author {
font-size: 1rem;
color: #333;
}
</style>
<title>Random Anime Quote</title>
</head>
<body>
<div class="container">
<p id="quote" class="quote">Loading...</p>
<p id="anime" class="anime"></p>
<p id="author" class="author"></p>
</div>
<script src="script.js"></script>
</body>
</html>