Compare commits
No commits in common. "557798e1f3045cb3f198050906955c3ad3ac8250" and "254254ec9f4df7888bb3581e24f99ce15f11343c" have entirely different histories.
557798e1f3
...
254254ec9f
@ -1,9 +0,0 @@
|
|||||||
CREATE TABLE IF NOT EXISTS habits
|
|
||||||
(
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
||||||
name TEXT NOT NULL,
|
|
||||||
note TEXT NOT NULL,
|
|
||||||
times TEXT NOT NULL,
|
|
||||||
created_at TEXT NOT NULL,
|
|
||||||
updated_at TEXT NOT NULL
|
|
||||||
);
|
|
||||||
@ -1,24 +0,0 @@
|
|||||||
.animated_background {
|
|
||||||
background: linear-gradient(229deg, #4bb1c1, #8525d7, #d76d25);
|
|
||||||
background-size: 600% 600%;
|
|
||||||
|
|
||||||
-webkit-animation: AnimationName 24s ease infinite;
|
|
||||||
-moz-animation: AnimationName 24s ease infinite;
|
|
||||||
animation: AnimationName 24s ease infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes AnimationName {
|
|
||||||
0%{background-position:0 50%}
|
|
||||||
50%{background-position:100% 50%}
|
|
||||||
100%{background-position:0 50%}
|
|
||||||
}
|
|
||||||
@-moz-keyframes AnimationName {
|
|
||||||
0%{background-position:0 50%}
|
|
||||||
50%{background-position:100% 50%}
|
|
||||||
100%{background-position:0 50%}
|
|
||||||
}
|
|
||||||
@keyframes AnimationName {
|
|
||||||
0%{background-position:0 50%}
|
|
||||||
50%{background-position:100% 50%}
|
|
||||||
100%{background-position:0 50%}
|
|
||||||
}
|
|
||||||
@ -6,12 +6,9 @@
|
|||||||
<title>{{ title }} - HabitTracker</title>
|
<title>{{ title }} - HabitTracker</title>
|
||||||
|
|
||||||
<!-- Bootstrap CSS -->
|
<!-- Bootstrap CSS -->
|
||||||
<link rel="stylesheet" href="/static/main.css">
|
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="vh-min-100 animated_background" style="min-height: 100vh">
|
|
||||||
<nav class="navbar navbar-expand-lg bg-body-tertiary">
|
<nav class="navbar navbar-expand-lg bg-body-tertiary">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<a class="navbar-brand" href="{{ url_for('index') }}">HabitTracker</a>
|
<a class="navbar-brand" href="{{ url_for('index') }}">HabitTracker</a>
|
||||||
@ -55,7 +52,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<div class="container mt-3">
|
<div class="container mt-3">
|
||||||
{% block content %} {% endblock %}
|
{% block content %} {% endblock %}
|
||||||
|
|
||||||
@ -63,6 +59,5 @@
|
|||||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user