-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathessays.html
124 lines (104 loc) · 2.24 KB
/
essays.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Essays</title>
<style>
a {
margin-left: 115px;
}
body {
font-family: Times, serif;
font-size: 30px;
}
body::before,
body::after {
content: "";
position: fixed;
top: 0;
bottom: 0;
width: 150px;
background-repeat: repeat-y;
background-size: auto 100%;
background-color: black;
}
body::before {
left: 0;
}
body::after {
right: 0;
}
h1 {
font-size: 90px;
font-weight: bold;
margin-top: 0;
margin-bottom: 0;
text-align: center;
}
h2 {
font-size: 30px;
font-weight: bold;
margin-top: 0;
text-align: center;
}
.search-container {
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
.search-container input[type="text"] {
padding: 8px;
font-size: 16px;
border: solid 1px;
width: 60%;
margin-right: 10px;
border-radius: 10px;
margin-bottom: 5px;
}
.search-container button {
padding: 8px;
font-size: 16px;
border: 1px;
border-radius: 10px;
}
.search-container button:hover {
cursor: pointer;
}
</style>
</head>
<body>
<h1>
All my essays
</h1>
<div class="search-container">
<label for="search-input"></label><input type="text" placeholder="Search..." id="search-input">
<button>Search</button>
</div>
<div id="essay-links">
<div class="section">
<h2>Section 1</h2>
<ul>
<li><a href="#">Sergio's Example Essay</a></li>
<li><a href="#">Sergio's Analytical Article</a></li>
<li><a href="#">Sergio's Thoughtful Thesis</a></li>
</ul>
</div>
<div class="section">
<h2>Section 2</h2>
<ul>
<li><a href="#">Sergio's Pondersome Passage</a></li>
<li><a href="#">Sergio's Pulchritudinous Poem</a></li>
<li><a href="#">Sergio's Creative Critique</a></li>
<li><a href="#">Sergio's Truthful Treatise</a></li>
</ul>
</div>
<div class="section">
<h2>Section 3</h2>
<ul>
<li><a href="#">Sergio's Wryly Wrought Writing</a></li>
</ul>
</div>
</div>
</body>
<script src="/js/search.js"></script>
</html>