-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
60 lines (57 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NIET Attendance</title>
</head>
<body>
<style>
@font-face {
font-family: "Bukhari Script";
src: url("./assets/font/bukhari_script-webfont.woff2") format("woff2"),
url("./assets/font/bukhari_script-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
}
body {
background-image: url("./assets/images/niet_background.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
color: aliceblue;
}
.container {
width: 40ch;
background-color: rgba(4, 35, 88, 0.726);
padding: 20px;
border-radius: 10px;
/* display: flex; */
/* flex-direction: column;
justify-content: center;
align-items: center; */
}
.flex {
display: flex;
justify-content: center;
align-items: center;
color: #ffde59;
}
img {
max-width: 100%;
margin: 10px 0;
border-radius: 10px;
}
.logo {
font-size: 2em;
font-family: "Bukhari Script", sans-serif;
}
</style>
<div class="container">
<h2 class="flex"><span class="logo">NIET</span> Attendance</h2>
<p>View the previously hidden attendance on NIET ERP.</p>
</div>
</body>
</html>