Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of html and css in source code #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

#content {
background-image: url("../static/image.jpg");
background-image: url("https://c.ndtvimg.com/2019-10/av3f286g_joker-movie-review-instagram_625x300_01_October_19.jpg");
background-color: #181818;
font-family: 'Noto Sans JP', sans-serif;
}
Expand All @@ -44,15 +44,12 @@

h1 {
font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #e50914;
color: #ffffff;
font-weight: bold;
margin-top: 30px;
text-shadow: #000000 0px 0px 13px;
}

.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}

@keyframes octocat-wave {
0%,
Expand Down
14 changes: 7 additions & 7 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<!-- Auto Complete -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tarekraafat/[email protected]/dist/css/autoComplete.min.css">
<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='style.css') }}">
<link rel="stylesheet" href="../static/style.css">
<script type="text/javascript">
var films = {{suggestions|tojson}};
</script>
Expand All @@ -27,11 +27,11 @@
<body id="content" style="font-family: 'Noto Sans JP', sans-serif;">

<div class="ml-container" style="display: block;">
<a href="https://github.com/kishan0725/AJAX-Movie-Recommendation-System-with-Sentiment-Analysis" target="_blank" class="github-corner" title="View source on GitHub">
<svg data-toggle="tooltip"
<!-- <a href="https://github.com/kishan0725/AJAX-Movie-Recommendation-System-with-Sentiment-Analysis" target="_blank" class="github-corner" title="View source on GitHub"> -->
<!-- <svg data-toggle="tooltip"
data-placement="left" width="80" height="80" viewBox="0 0 250 250"
style="fill:#e50914; color:#fff; position: fixed;z-index:100; top: 0; border: 0; right: 0;" aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path> -->
<path
d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
Expand Down Expand Up @@ -65,13 +65,13 @@ <h2 id="name" class="text-uppercase"></h2>
</center>
</div>

<div class="footer" style="">Made with<span style="font-size:150%;color:red;"> &hearts; </span>by Kishan</div>
<div class="footer" style="">Made with<span style="font-size:150%;color:red;"> &hearts; </span>By Our Team</div>

<script src="https://cdn.jsdelivr.net/npm/@tarekraafat/[email protected]/dist/js/autoComplete.min.js"></script>
<script type="text/javascript" src="{{url_for('static', filename='autocomplete.js')}}"></script>
<script type="text/javascript" src="../static/autocomplete.js"></script>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" src="{{url_for('static', filename='recommend.js')}}"></script>
<script type="text/javascript" src="../static/recommend.js"></script>

</body>
</html>