-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblockedUsers.html
More file actions
95 lines (91 loc) · 2.61 KB
/
blockedUsers.html
File metadata and controls
95 lines (91 loc) · 2.61 KB
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
<!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="icon" type="image/png" href="siteLogo1.png" sizes="120×120"/>
<title>Document</title>
</head>
<body>
<style>
body{
margin:0;
display: flex;
align-items: center;
justify-content: center;
}
#sec-of-bu{
margin-top: 50px;
padding: 10px;
width: 400px;
height: 500px;
}
.logo-bu{
width:60px;
height: 60px;
}
.blockedUsersForm{
height: 400px;
background-color: rgb(243, 243, 243);
text-align: center;
border-radius: 5px;
}
#imageLogo{
padding-left: 42%;
}
ul{
display: inline-block;
text-align: left;
}
ul li{
margin-top: 20px;
cursor: pointer;
}
ul li span{
font-size: 20px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: rgb(93, 28, 212);
}
#tick{
user-select: none;
}
#but{
display: block;
height: 40px;
margin: 75px auto;
border-radius: 5px;
cursor: pointer;
color: black;
background-color: rgb(205, 203, 207);
border: none;
font-size: 20px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
}
.tog{
opacity: 0.7;
color: red;
}
</style>
<section id="sec-of-bu">
<span id="imageLogo">
<img class="logo-bu" src="siteLogo1.png" alt="">
</span>
<form class="blockedUsersForm" action="removeContact.php">
<ul>
<li><span onclick="ticked(this)">Benjamin</span></li>
<li><span onclick="ticked(this)">Adem matri</span></li>
<li><span onclick="ticked(this)">Ava</span></li>
<li><span onclick="ticked(this)">sdf11</span></li>
<li><span onclick="ticked(this)">sdf11</span></li>
</ul>
<input id="but" type="submit" value="Unblock">
</form>
</section>
</body>
<script type="text/javascript">
function ticked(element){
element.classList.toggle("tog");
}
</script>
</html>