Skip to content

Commit

Permalink
update html
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed Apr 1, 2024
1 parent e06265e commit 7b7a7a4
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 31 deletions.
24 changes: 24 additions & 0 deletions app/static/css/index.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
/* Reset and Basics */
html, body {
height: 100%;
margin: 0;
}

/* Body Styles */
body {
display: flex;
flex-direction: column;
font-family: 'Roboto', Helvetica, sans-serif;
font-size: 0.95em; /* 12px converted to 0.75em */
color: #D3D3D3;
background-color: #2a2a2c;
}

/* Layout */
.wrapper {
flex: 1 0 auto;
display: flex;
flex-direction: column;
}

.content {
flex: 1 0 auto;
}

/* Links */
a, .bookmarks-link:visited {
Expand Down
41 changes: 10 additions & 31 deletions app/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,40 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<html class="no-js" lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OnBoard</title>
<style>
html, body {
height: 100%;
margin: 0;
}
<meta name="description" content="">

/* Body Styles */
body {
display: flex;
flex-direction: column;
font-family: 'Roboto', Helvetica, sans-serif;
font-size: 0.95em; /* 12px converted to 0.75em */
color: #D3D3D3;
background-color: #2a2a2c;
}
<meta property="og:title" content="OnBoard">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta property="og:image:alt" content="">

/* Layout */
.wrapper {
flex: 1 0 auto;
display: flex;
flex-direction: column;
}

.content {
flex: 1 0 auto;
}
</style>
<script defer src="https://unpkg.com/[email protected]"></script>
<script defer src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script defer src="{{ url_for('static', filename='js/script.js') }}"></script>
<script defer src="https://unpkg.com/[email protected]/dist/htmx.min.js"></script>
<link rel="stylesheet" href="{{ url_for('static', filename='css/index.css') }}">
</head>

Expand Down

0 comments on commit 7b7a7a4

Please sign in to comment.