-
Notifications
You must be signed in to change notification settings - Fork 87
/
index.html
63 lines (63 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Who to follow</title>
<link href='http://fonts.googleapis.com/css?family=Inconsolata|Josefin+Sans:400,300' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="build.js"></script>
<style>
* {
font-family: 'Josefin Sans', sans-serif;
}
body {
font-family: Josefin Sans;
font-family: sans-serif;
padding: 10px;
font-size: 1.1em;
}
h2 {
margin: 0;
font-weight: bold;
display: inline-block;
}
#refresh {
font-size: 80%;
margin-left: 10px;
}
#container {
border: 2px solid #ECECEC;
}
.header {
background: #ECECEC;
padding: 5px;
}
.suggestions {
border: 2px solid #ECECEC;
}
ul {
margin: 0;
padding: 0;
}
li {
list-style: outside none none;
padding: 5px;
height: 40px;
}
li img {
width: 40px;
height: 40px;
border-radius: 20px;
vertical-align: middle;
}
li > * {
margin-right: 5px;
}
</style>
</head>
<body>
<div id="container"></div>
<p>
<a href="https://github.com/paldepind/functional-frontend-architecture/tree/master/examples/who-to-follow/main.js">See the source code</a>
</p>
</body>
</html>