-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblackList.html
75 lines (58 loc) · 1.35 KB
/
blackList.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main.css">
<title>Black List</title>
<style type="text/css">
#image {
line-height: 1.5em;
list-style-image: url(icon2.png);
}
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-family: Arial ,Helvetica, Arial, sans-serif;
font-size: 100%;
background: #FFB200;
-webkit-font-smoothing: antialiased;
}
h1 { color: #111; font-family: 'Helvetica Neue', sans-serif; font-size: 190px; font-weight: bold; letter-spacing: -1px; line-height: 1; text-align: center; }
.back {
position: fixed;
bottom: 8px;
opacity: 1;
left: 10px;
}
.back input {
background: #FFB200;
color: #685206;
border: 1px solid #685206;
}
.back input:hover {
background: #FFB200;
}
li {
color: #685206; font-family: 'Helvetica Neue', sans-serif; line-height: 24px; margin: 0 0 24px; text-align: justify; text-justify: inter-word;
}
</style>
</head>
<body>
<center>
<h1>Black List</h1>
<form action="index.html" class="back">
<input type="submit" name="" value="Go Back">
</form>
<div id="page-wrapper">
<ol id="main">
</ol>
</div>
<script src="list.js">
</script>
</center>
</body>
</html>