-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathheader.php
59 lines (52 loc) · 1.45 KB
/
header.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Realtime Chat</title>
<link rel="stylesheet" href="style.css">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/> -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
html,body{
font-family: 'Poppins', sans-serif;
}
body {
overflow: hidden;
}
.toast.fade {
transition: all 1.5s ease !important;
}
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
.popover-header {
text-align: center;
padding: 15px !important;
}
.notif-old {
filter: opacity(.6);
}
.notif-text {
font-size: .9rem;
}
.notif-date {
font-size: .8rem;
}
/* linear-gradient(0deg, rgba(0,0,0,0.49933476808692223) 0%, rgba(255,255,255,0) 100%) */
#gif {
z-index: 0;
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
opacity: .5;
z-index: -2;
}
</style>
</head>