-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (66 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Movie List</title>
<script src="lib/react/react-with-addons.js"></script>
<script src="lib/react/react-dom.js"></script>
<link rel="styles" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Lato|Quicksand" rel="stylesheet">
<style>
body {
font-family: 'Quicksand', sans-serif;
margin: 5%;
font-size: 1px;
background-color: aliceblue;
}
h1 {
text-align: center;
font-size: 30px;
}
.watched {
float: right;
background: #77dd77;
border-radius: 25px;
border: 1px solid black;
margin-left: 100px;
}
.movie-list-entry-title {
margin-left: 50px;
font-size: 15px;
}
.entry:nth-child(even) {
background-color: #D3D3D3;
padding: 20px;
margin: 0px;
border: 1px solid black;
border-radius: 5px;
}
.search-nav input[type=text] {
/*float: right;*/
/*padding: 6px;*/
border: none;
margin-top: 8px;
margin-right: 4px;
margin-bottom: 8px;
font-size: 12px;
}
.search-nav {
text-align: right;
}
#watched-button #to-watch-button #all-button {
}
</style>
</head>
<body>
<h1>MovieList</h1>
<div id="app"></div>
<script src="compiled/components/App.js"></script>
<script src="compiled/components/Add.js"></script>
<script src="compiled/components/Search.js"></script>
<script src="compiled/components/MovieList.js"></script>
<script src="compiled/components/MovieListEntry.js"></script>
<script src="compiled/data/exampleVideoData.js"></script>
<script src="compiled/index.js"></script>
</body>
</html>