-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
190 lines (183 loc) · 6.58 KB
/
index.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<title>Home | Computer Science Revision Guide Group</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@tailwindcss/forms@0.3.2/dist/forms.min.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/tailwindcss@next/dist/base.min.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/tailwindcss@next/dist/components.min.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/tailwindcss@next/dist/utilities.min.css"
/>
<link href="css/styles.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Open+Sans&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div
class="
container
mx-auto
px-4
sm:px-6
lg:px-8
font-open-sans
text-white
min-h-screen
flex flex-col
justify-center
py-16
sm:py-24
"
>
<div class="max-w-7xl pb-4 px-4 sm:pb-12 sm:px-6 lg:px-8">
<div class="text-center">
<h2
class="
font-semibold
text-3xl
sm:text-4xl
sm:tracking-tight
lg:text-5xl
tracking-wide
italic
font-fira-code
"
>
Welcome to the
</h2>
<p
class="
mt-2
font-extrabold
text-white text-5xl
sm:text-6xl
lg:text-7xl
"
>
Warwick Computer Science Revision Guide
</p>
</div>
</div>
<div class="px-4 sm:px-6 lg:px-8">
<div
class="
relative
max-w-lg
mx-auto
divide-y-2 divide-gray-200
lg:max-w-7xl
"
>
<div>
<!-- <h2
class="
text-3xl text-center
tracking-tight
font-extrabold
sm:text-4xl
"
>
Guide Search
</h2> -->
<div class="mt-6">
<label for="query" class="sr-only"
>Search for a guide</label
>
<input
type="text"
name="query"
id="query"
autocomplete="tel"
class="
block
w-full
shadow-sm
py-3
px-4
placeholder-gray-500
rounded-md
text-black
"
placeholder="Search for a guide by module or name"
/>
</div>
</div>
<div
class="
mt-12
grid
gap-16
pt-12
lg:grid-cols-3
lg:gap-x-5 lg:gap-y-12
"
id="results"
>
<div>
<a
href="#"
class="
block
font-fira-code
underline
text-center
"
>
<p class="text-xl font-semibold">
CS118: Programming for Computer Scientists
</p>
</a>
</div>
<div>
<a
href="#"
class="
block
font-fira-code
underline
text-center
"
>
<p class="text-xl font-semibold">
CS118: Programming for Computer Scientists
</p>
</a>
</div>
<div>
<a
href="#"
class="
block
font-fira-code
underline
text-center
"
>
<p class="text-xl font-semibold">
CS118: Programming for Computer Scientists
</p>
</a>
</div>
</div>
</div>
</div>
</div>
<script async src="js/index.js"></script>
</body>
</html>