├── README.md ├── _config.yml ├── addons ├── Logo.css ├── cursor_aware_headertabs-mightworkon.css ├── jf-blue.css └── jf-purple.css ├── default.css ├── fonts ├── cairo-v14-arabic-200.eot ├── cairo-v14-arabic-200.svg ├── cairo-v14-arabic-200.ttf ├── cairo-v14-arabic-200.woff ├── cairo-v14-arabic-200.woff2 ├── cairo-v14-arabic-300.eot ├── cairo-v14-arabic-300.svg ├── cairo-v14-arabic-300.ttf ├── cairo-v14-arabic-300.woff ├── cairo-v14-arabic-300.woff2 ├── cairo-v14-arabic-500.eot ├── cairo-v14-arabic-500.svg ├── cairo-v14-arabic-500.ttf ├── cairo-v14-arabic-500.woff ├── cairo-v14-arabic-500.woff2 ├── cairo-v14-arabic-600.eot ├── cairo-v14-arabic-600.svg ├── cairo-v14-arabic-600.ttf ├── cairo-v14-arabic-600.woff ├── cairo-v14-arabic-600.woff2 ├── cairo-v14-arabic-700.eot ├── cairo-v14-arabic-700.svg ├── cairo-v14-arabic-700.ttf ├── cairo-v14-arabic-700.woff ├── cairo-v14-arabic-700.woff2 ├── cairo-v14-arabic-800.eot ├── cairo-v14-arabic-800.svg ├── cairo-v14-arabic-800.ttf ├── cairo-v14-arabic-800.woff ├── cairo-v14-arabic-800.woff2 ├── cairo-v14-arabic-900.eot ├── cairo-v14-arabic-900.svg ├── cairo-v14-arabic-900.ttf ├── cairo-v14-arabic-900.woff ├── cairo-v14-arabic-900.woff2 ├── cairo-v14-arabic-regular.eot ├── cairo-v14-arabic-regular.svg ├── cairo-v14-arabic-regular.ttf ├── cairo-v14-arabic-regular.woff └── cairo-v14-arabic-regular.woff2 └── img ├── Ep-list.jpg ├── Home.jpg ├── Login.jpg ├── Movies.jpg ├── TV Shows.jpg ├── Title Page-Movie.jpg └── Title Page-TV.jpg /README.md: -------------------------------------------------------------------------------- 1 | > # **Warning** : This skin's development has been halted for sometime. There is no eta as to when I will start working on this skin 2 | 3 |
4 |

JellyFlix

5 |

Looks, Feels and Smells like Netflix

6 |

Netflix Theme for Jellyfin

7 |
8 |
9 |

Usage:

10 |

To use it, got to Setting ==> Dashboard ==> General and scroll down to custom css and paste the following line

11 | 12 | 13 |

Base Version:

14 |

Auto Update:

15 | 16 | ```css 17 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/default.css"); 18 | ``` 19 | 20 |

Custom Version:

21 | 22 | ```css 23 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@/default.css"); 24 | ``` 25 | 26 |

With Logos(recommended):

27 |

Auto Update:

28 | 29 | ```css 30 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/default.css"); 31 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@latest/addons/Logo.css"); 32 | ``` 33 | 34 |

Custom Version:

35 | 36 | ```css 37 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@/default.css"); 38 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@/addons/Logo.css"); 39 | ``` 40 | 41 |
42 |

You can also use Jellyfin colors instead of Netflix red

43 | Jellyfin-Blue: 44 | 45 | ```css 46 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@9.0.4/addons/jf-blue.css"); 47 | ``` 48 | Jellyfin-Purple: 49 | 50 | ```css 51 | @import url("https://cdn.jsdelivr.net/gh/prayag17/JellyFlix@9.0.4/addons/jf-purple.css"); 52 | ``` 53 | 54 | 55 |
56 |
57 | 61 |
62 |

Home Page

63 | 64 |
65 |
66 |

Library

67 | 68 | 69 |
70 |
71 |

Movie Title Page

72 | 73 |
74 |
75 |

TV Show Title page

76 | 77 |
78 |
79 |
80 |
81 |

The UI feels cluttered? try:

Use 67% zoom for better experience on PC

82 |
83 |
84 |
85 |

Note: If you want any things to be changed/added to this skin create and issue with 'Feature Request:' in front of it and I also want to make this skin to be supported by most of the devices, so create an issue if your device doesn't work properly with it. Please provide me the name of your device with it's type in this format-

86 | 87 | ``` 88 | Device-name: Your name 89 | type: Mobile/TV (Laptop are all supported, use 67% zoom) 90 | ``` 91 |
92 |
93 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /addons/Logo.css: -------------------------------------------------------------------------------- 1 | #itemDetailPage .detailLogo { 2 | position: static; 3 | background-position: 0 !important; 4 | display: block !important; 5 | height: 20vh; 6 | max-width: 35vw; 7 | width: auto; 8 | flex-shrink: 0; 9 | margin-left: 5vw; 10 | margin-top: 10vh; 11 | } 12 | 13 | div#itemDetailPage { 14 | display: flex; 15 | flex-direction: column; 16 | } 17 | 18 | .detailPagePrimaryContent { 19 | min-height: 60vh !important; 20 | } 21 | 22 | .layout-mobile .detailRibbon { 23 | margin-top: 0 !important; 24 | } 25 | 26 | .hide + .detailPageWrapperContainer .detailPagePrimaryContent { 27 | min-height: 65vh !important; 28 | } 29 | 30 | .hide + .detailPageWrapperContainer .detailRibbon { 31 | position: relative !important; 32 | top: 0; 33 | width: -webkit-fit-content !important; 34 | width: -moz-fit-content !important; 35 | width: fit-content !important; 36 | background: transparent; 37 | max-width: 100vw !important; 38 | margin-top: 10vh !important; 39 | padding: 0 !important; 40 | height: 25vh !important; 41 | font-size: 135% !important; 42 | } 43 | 44 | .layout-desktop #itemDetailPage:not(.noBackdrop) .detailPagePrimaryContainer, 45 | .layout-tv #itemDetailPage:not(.noBackdrop) .detailPagePrimaryContainer { 46 | margin: 0; 47 | padding: 0; 48 | height: 10vh; 49 | } 50 | 51 | :not(.hide) + .detailPageWrapperContainer .parentName, 52 | :not(.hide) + .detailPageWrapperContainer .parentNameLast, 53 | :not(.hide) + .detailPageWrapperContainer .parentName > *, 54 | :not(.hide) + .detailPageWrapperContainer .parentNameLast > * { 55 | font-size: 0; 56 | display: block; 57 | position: fixed; 58 | background: transparent; 59 | width: 35vw; 60 | height: 20vh; 61 | top: 10vh; 62 | left: 5vw; 63 | } 64 | 65 | .layout-mobile #itemDetailPage .parentName, 66 | .layout-mobile #itemDetailPage .parentNameLast { 67 | display: block; 68 | } 69 | 70 | .hide + .detailPageWrapperContainer .parentName, 71 | .hide + .detailPageWrapperContainer .parentNameLast { 72 | display: block !important; 73 | } 74 | 75 | .itemName { 76 | margin: 0.5em 0 !important; 77 | } 78 | 79 | .layout-mobile #itemDetailPage .detailLogo { 80 | display: none !important; 81 | } 82 | 83 | .layout-mobile #itemDetailPage .itemName.infoText.parentNameLast { 84 | display: block; 85 | width: calc(100% - 10vw); 86 | position: static; 87 | height: -webkit-fit-content; 88 | height: -moz-fit-content; 89 | height: fit-content; 90 | font-size: 10.5vw; 91 | } 92 | 93 | #itemDetailPage .detailLogo.hide { 94 | display: none !important; 95 | } 96 | -------------------------------------------------------------------------------- /addons/cursor_aware_headertabs-mightworkon.css: -------------------------------------------------------------------------------- 1 | .emby-tab-button::after { 2 | content: ""; 3 | width: 100%; 4 | position: absolute; 5 | height: 4px; 6 | background: var(--accent); 7 | border-radius: 10px; 8 | transform: translateX(100%) !important; 9 | transition: 0.35s ease-in-out; 10 | left: 0; 11 | bottom: 0.75em; 12 | right: 0; 13 | visibility: hidden; 14 | } 15 | .emby-tab-button:hover::after { 16 | transform: translateX(-0%) !important; 17 | visibility: visible; 18 | } 19 | .emby-tab-button:hover ~ .emby-tab-button::after { 20 | transform: translateX(-100%) !important; 21 | } 22 | .emby-tab-button.emby-tab-button-active::after { 23 | transform: translateX(0%) !important; 24 | visibility: visible; 25 | } 26 | -------------------------------------------------------------------------------- /addons/jf-blue.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --accent: #00a4dc; 3 | --deftraback: rgb(0, 164, 220, 0.2) !important; 4 | } 5 | -------------------------------------------------------------------------------- /addons/jf-purple.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --accent: #aa5cc3; 3 | --deftraback: rgb(170, 92, 195, 0.2) !important; 4 | } 5 | -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-200.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-200.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 19 | 22 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 36 | 37 | 39 | 41 | 42 | 44 | 46 | 47 | 50 | 52 | 53 | 54 | 55 | 56 | 57 | 59 | 63 | 64 | 66 | 68 | 69 | 70 | 71 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 82 | 83 | 85 | 86 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 103 | 105 | 107 | 109 | 111 | 112 | 115 | 116 | 117 | 118 | 119 | 120 | 122 | 123 | 125 | 127 | 129 | 130 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 142 | 143 | 146 | 148 | 149 | 150 | 152 | 154 | 156 | 157 | 158 | 161 | 162 | 165 | 167 | 168 | 169 | 170 | 173 | 174 | 176 | 177 | 178 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 191 | 193 | 195 | 196 | 197 | 198 | 200 | 201 | 203 | 204 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 217 | 219 | 221 | 223 | 225 | 228 | 230 | 231 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 242 | 244 | 246 | 248 | 251 | 253 | 256 | 259 | 262 | 264 | 266 | 268 | 270 | 271 | 272 | 273 | 274 | 276 | 278 | 280 | 282 | 284 | 287 | 289 | 290 | 292 | 293 | 294 | 295 | 296 | 297 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-200.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-200.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-200.woff2 -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-300.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-300.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 19 | 22 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 36 | 37 | 39 | 41 | 42 | 44 | 46 | 47 | 50 | 52 | 53 | 54 | 55 | 56 | 57 | 59 | 63 | 64 | 66 | 68 | 69 | 70 | 71 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 82 | 83 | 85 | 86 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 103 | 105 | 107 | 109 | 111 | 112 | 115 | 116 | 117 | 118 | 119 | 120 | 122 | 123 | 125 | 127 | 129 | 130 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 142 | 143 | 146 | 148 | 149 | 150 | 152 | 154 | 156 | 157 | 158 | 161 | 162 | 165 | 167 | 168 | 169 | 170 | 172 | 173 | 175 | 176 | 177 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 190 | 192 | 194 | 195 | 196 | 197 | 199 | 200 | 202 | 203 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 216 | 218 | 220 | 222 | 224 | 227 | 229 | 230 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 241 | 243 | 245 | 247 | 250 | 252 | 255 | 258 | 261 | 263 | 265 | 267 | 269 | 270 | 271 | 272 | 273 | 275 | 277 | 279 | 281 | 283 | 286 | 288 | 289 | 291 | 292 | 293 | 294 | 295 | 296 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-300.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-300.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-300.woff2 -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-500.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-500.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 19 | 22 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 36 | 37 | 39 | 41 | 42 | 44 | 46 | 47 | 50 | 52 | 53 | 54 | 55 | 56 | 57 | 59 | 63 | 64 | 66 | 68 | 69 | 70 | 71 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 82 | 83 | 85 | 86 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 103 | 105 | 107 | 109 | 111 | 112 | 115 | 116 | 117 | 118 | 119 | 120 | 122 | 123 | 125 | 127 | 129 | 130 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 142 | 143 | 146 | 148 | 149 | 150 | 152 | 154 | 156 | 157 | 158 | 161 | 162 | 165 | 167 | 168 | 169 | 170 | 172 | 173 | 175 | 176 | 177 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 190 | 192 | 194 | 195 | 196 | 197 | 199 | 200 | 202 | 203 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 216 | 218 | 220 | 222 | 224 | 227 | 229 | 230 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 241 | 243 | 245 | 248 | 251 | 254 | 257 | 260 | 263 | 265 | 267 | 269 | 271 | 272 | 273 | 274 | 275 | 277 | 279 | 281 | 283 | 285 | 288 | 290 | 291 | 293 | 294 | 295 | 296 | 297 | 298 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-500.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-500.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-500.woff2 -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-600.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-600.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-600.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-600.woff2 -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-700.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-700.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-700.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-700.woff2 -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-800.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-800.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-800.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-800.woff2 -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-900.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-900.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-900.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-900.woff2 -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-regular.eot -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-regular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 19 | 22 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 36 | 37 | 39 | 41 | 42 | 44 | 46 | 47 | 50 | 52 | 53 | 54 | 55 | 56 | 57 | 59 | 63 | 64 | 66 | 68 | 69 | 70 | 71 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 82 | 83 | 85 | 86 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 103 | 105 | 107 | 109 | 111 | 112 | 115 | 116 | 117 | 118 | 119 | 120 | 122 | 123 | 125 | 127 | 129 | 130 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 142 | 143 | 146 | 148 | 149 | 150 | 152 | 154 | 156 | 157 | 158 | 161 | 162 | 165 | 167 | 168 | 169 | 170 | 172 | 173 | 175 | 176 | 177 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 190 | 192 | 194 | 195 | 196 | 197 | 199 | 200 | 202 | 203 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 216 | 218 | 220 | 222 | 224 | 227 | 229 | 230 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 241 | 243 | 245 | 248 | 251 | 254 | 257 | 260 | 263 | 265 | 267 | 269 | 271 | 272 | 273 | 274 | 275 | 277 | 279 | 281 | 283 | 285 | 288 | 290 | 291 | 293 | 294 | 295 | 296 | 297 | 298 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-regular.ttf -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-regular.woff -------------------------------------------------------------------------------- /fonts/cairo-v14-arabic-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/fonts/cairo-v14-arabic-regular.woff2 -------------------------------------------------------------------------------- /img/Ep-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/img/Ep-list.jpg -------------------------------------------------------------------------------- /img/Home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/img/Home.jpg -------------------------------------------------------------------------------- /img/Login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/img/Login.jpg -------------------------------------------------------------------------------- /img/Movies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/img/Movies.jpg -------------------------------------------------------------------------------- /img/TV Shows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/img/TV Shows.jpg -------------------------------------------------------------------------------- /img/Title Page-Movie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/img/Title Page-Movie.jpg -------------------------------------------------------------------------------- /img/Title Page-TV.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prayag17/JellyFlix/8dad232b7cb8004f2cb2210ec0ef1c9fffac6ea5/img/Title Page-TV.jpg --------------------------------------------------------------------------------