-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_user.php
158 lines (136 loc) · 3.92 KB
/
about_user.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!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">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="grid.css">
<title>Home</title>
<style>
body::before
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(#f00,#f0f);
clip-path: circle(30% at right 70%);
}
body::after
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(#2196f3,#e91e63);
clip-path: circle(20% at 10% 10%);
z-index: -1;
}
.container{
position: relative;
width: 100%;
min-height: 100vh;
display:flex;
justify-content: center;
align-items: center;
background: #333;
transition: 0.5s;
padding: 20px;
}
.container#blur.active{
filter: blur(20px);
pointer-events: none;
user-select: none;
}
.container .content{
position: relative;
max-width: 800px;
}
h2{
font-weight: 600;
margin-bottom: 10px;
color:#333;
}
.container .content img{
max-width: 100%;
display: block;
}
a{
position: relative;
padding: 5px 20px;
display: inline-block;
margin-top: 20px;
text-decoration: none;
color:#fff;
}
#popup{
position:fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
padding: 50px;
box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
background: #fff;
visibility: hidden;
opacity: 0;
transition: 0.5s;
}
#popup.active{
visibility: visible;
opacity: 1;
transition: 0.5s;
}
</style>
</head>
<body>
<div class="header">
<a href="welcome_user.php" class="logo"><img src="./img/logo final.png"></a>
<ul>
<li><a href="welcome_user.php">Home</a></li>
<li><a href="servicer_custom.php">Services</a></li>
<li><a href="pro1.php">Promotion</a></li>
<li><a href="finance_user.php">Finance</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
<section class=""></section>
<script type="text/javascript">
window.addEventListener("scroll", function() {
var header = document.querySelector("header");
header.classList.toggle("sticky", window.scrollY > 0);
});
</script>
<br>
<div class="container" id="blur">
<div class="content">
<h2 style="color:white;">
The global pandemic had a devastating effect on small-sized businesses, leaving many struggling to survive.
To help these businesses during this difficult time, this website have been created as a platform to give suggestion for suitable loans and promtote their local markets.
This website play an essential role in supporting small business owners during this crisis.
</h2>
<a href="#" style="background: #000;" onclick="toggle()">Developers</a>
</div>
</div>
<div id="popup">
<center><h2>For Support Contact</h2>
<p>Joyfree</p><br>
<p>Duval</p><br>
<p>Jeslif</p></center>
<a href="#" style="background: #000;" onclick="toggle()">Close</a>
</div>
<script type="text/javascript">
function toggle() {
var blur = document.getElementById('blur');
blur.classList.toggle('active');
var popup = document.getElementById('popup');
popup.classList.toggle('active')
}
</script>
</body>
</html>