Diff of /templates/base.html [000000] .. [9dc5df]

Switch to unified view

a b/templates/base.html
1
<html lang="en">
2
3
<head>
4
    <meta charset="UTF-8">
5
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
7
    <title>AI Demo</title>
8
    <link href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
9
    <script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js"></script>
10
    <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
11
    <script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
12
    <link href="{{ url_for('static', filename='css/main.css') }}" rel="stylesheet">   
13
    <link rel="stylesheet" href="C:\Users\junnajamshed\Desktop\projectCopy\static\css\navstyle.css">  
14
    <style>
15
        body{
16
            width: 100%;
17
      height: 100vh;
18
      display: flex;
19
      background-size: 300% 300%;
20
      background-image: linear-gradient(
21
            -45deg, 
22
            rgba(59,173,227,1) 0%, 
23
            rgba(87,111,230,1) 25%, 
24
            rgba(152,68,183,1) 51%, 
25
            rgba(255,53,127,1) 100%
26
      );  
27
      animation: AnimateBG 20s ease infinite;
28
    }
29
    
30
    @keyframes AnimateBG { 
31
      0%{background-position:0% 50%}
32
      50%{background-position:100% 50%}
33
      100%{background-position:0% 50%}
34
    }
35
        </style>
36
</head>
37
38
<body>
39
    <nav>
40
        <input type="checkbox" id="check">
41
        <label for="check" class="checkbtn">
42
          <i class="fas fa-bars"></i>
43
        </label>
44
        <label class="logo">Leukemia Cancer Detection</label>
45
        <ul>
46
          <li><a class="active" href="#">Home</a></li>
47
          <li><a href="index.html">Detection</a></li>
48
          <li><a href="about.html">About us</a></li>
49
          <li><a href="#">Contact</a></li>
50
        </ul>
51
      </nav>
52
    
53
    <div class="container">
54
        <div id="content" style="margin-top:10em">{% block content %}{% endblock %}</div>
55
    </div>
56
</body>
57
58
<footer>
59
    <script src="{{ url_for('static', filename='js/main.js') }}" type="text/javascript"></script>    
60
</footer>
61
62
</html>