restructure
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
.form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
@@ -1,15 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>Pyrometry Application</title>
|
||||
<link rel="app.css">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<div class="navbar">
|
||||
<h3>Pyrometry Toolkit</h3>
|
||||
<div class="navbar-links">
|
||||
<a class="navbar-link" href="/">Ratio Pyrometry</a>
|
||||
<a class="navbar-link" href="/projected_area">Projected Area</a>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
{% block content required %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
</style>
|
||||
|
||||
6
templates/projected-area-results.html
Normal file
6
templates/projected-area-results.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
|
||||
|
||||
{% endblock %}
|
||||
6
templates/projected-area.html
Normal file
6
templates/projected-area.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
|
||||
|
||||
{% endblock %}
|
||||
@@ -39,32 +39,4 @@
|
||||
<strong>Temperature Distribution</strong>
|
||||
{{freq_plot}}
|
||||
|
||||
<style>
|
||||
.img-table-heading {
|
||||
padding: 4px 10px;
|
||||
}
|
||||
|
||||
.img-table-cell {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.img-out {
|
||||
width: 32rem;
|
||||
}
|
||||
|
||||
.legend {
|
||||
border-spacing: 0px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.legend-heading {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.legend-cell {
|
||||
border-width: 0px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
</style>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user