-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase.html
150 lines (131 loc) · 4.65 KB
/
case.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Netflix Gaze</title>
<link rel="shortcut icon" href="icon/favicon.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<main class="case-page">
<nav class="navbar">
<div class="container whole-width flex space-between" style="height:100%;">
<div class="navbar-logo">
<a href="index.html"><img src="logo/netflix_gaze_logo_horizontal.png"></a>
</div>
<div class="navbar-menu">
<!-- <a class="navbar-item" href="projects.html">
<h2>NETLIX GAZE</h2>
</a> -->
<a class="navbar-item" href="about.html">About</a>
</div>
</div>
</nav>
<section class="container case-title">
<a class="cross-button" href="index.html">
<span class="icon-cross"></span>
</a>
<div id="soustitre">
<span class="case-first-line">Top 5 of most recommended content in February 2021</span>
<div class="case-second-line">
<div>at position :</div>
<div class="position-line-container">
<div>Line</div>
<div class="position-line netflix-red"></div>
</div>
<div>-</div>
<div class="position-column-container">
<div>Column</div>
<div class="position-column netflix-red"></div>
</div>
</div>
</div>
</section>
<!-- <hr class="hr-line" /> -->
<div class="container">
<section class="pannel-options columns">
<div class="grow">
<input
style="display: none"
type="radio"
id="mediatype"
name="filmData"
class="button2"
value="FILMS OU SERIES ?"
/>
<label for="mediatype" class="button2">Movie or series?</label>
</div>
<div class="grow">
<input
style="display: none"
type="radio"
id="production"
name="filmData"
class="button2"
value="PRODUCTIONS NETFLIX ?"
/>
<label for="production" class="button2">Netflix production?</label>
</div>
<div class="grow">
<input
style="display: none"
type="radio"
id="date"
name="filmData"
class="button2"
value="DATES DE SORTIE ?"
/>
<label for="date" class="button2">Year of release?</label>
</div>
<div class="grow">
<input
style="display: none"
type="radio"
id="rating"
name="filmData"
class="button2"
value="NOTES IMDB ?"
/>
<label for="rating" class="button2">Imdb rating?</label>
</div>
</section>
<div class="arrow-container">
<p class="arrow-tag">Number of recommendations</p>
<div class="arrow">
<div class="line"></div>
<div class="point"></div>
</div>
</div>
</div>
<div class="container grow flex column viz-container">
<div class="viz02"></div>
</div>
</main>
<div class="mini-map-container">
<p>You are here <span class="icon-arrow"></span></p>
<div class="mini-map">
<a class="box" href="case.html?line=1&column=0"></a>
<a class="box" href="case.html?line=1&column=1"></a>
<a class="box" href="case.html?line=1&column=2"></a>
<a class="box" href="case.html?line=1&column=3"></a>
<a class="box" href="case.html?line=1&column=4"></a>
<a class="box" href="case.html?line=2&column=0"></a>
<a class="box" href="case.html?line=2&column=1"></a>
<a class="box" href="case.html?line=2&column=2"></a>
<a class="box" href="case.html?line=2&column=3"></a>
<a class="box" href="case.html?line=2&column=4"></a>
<a class="box" href="case.html?line=3&column=0"></a>
<a class="box" href="case.html?line=3&column=1"></a>
<a class="box" href="case.html?line=3&column=2"></a>
<a class="box" href="case.html?line=3&column=3"></a>
<a class="box" href="case.html?line=3&column=4"></a>
</div>
</div>
<!-- <script src="//use.edgefonts.net/arvo.js"></script> -->
<script type="module" src="js/app.js"></script>
</body>
</html>