110 lines
2.5 KiB
HTML
110 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="'IE=edge" />
|
|
<title>EXTREMUM</title>
|
|
<meta name="viewport" content="'width=device-width, initial-scale=1" />
|
|
{% load static %}
|
|
{% load bootstrap5 %}
|
|
{% bootstrap_css %}
|
|
{% bootstrap_javascript %}
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
|
|
</head>
|
|
|
|
<style>
|
|
|
|
.scrollit {
|
|
overflow: auto;
|
|
height: auto;
|
|
width: 60%;
|
|
max-width: fit-content;
|
|
margin: 0px auto;
|
|
}
|
|
|
|
.dataframe {
|
|
font-size: 11pt;
|
|
font-family: Arial;
|
|
border-collapse: collapse;
|
|
margin: 25px 0;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.dataframe thead tr {
|
|
text-align: left;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.dataframe th,
|
|
.dataframe td {
|
|
padding: 12px 15px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dataframe tbody tr {
|
|
border-bottom: 1px solid #dddddd;
|
|
}
|
|
|
|
.dataframe tbody tr:nth-of-type(even) {
|
|
background-color: #f3f3f3;
|
|
}
|
|
|
|
.dataframe tbody tr:last-of-type {
|
|
border-bottom: 2px solid #009879;
|
|
}
|
|
|
|
/* CSS */
|
|
.button-6 {
|
|
align-items: center;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
border-radius: .25rem;
|
|
box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
|
|
box-sizing: border-box;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
justify-content: center;
|
|
line-height: 1.25;
|
|
margin: 0;
|
|
min-height: 3rem;
|
|
padding: calc(.875rem - 1px) calc(1.5rem - 1px);
|
|
position: relative;
|
|
text-decoration: none;
|
|
transition: all 250ms;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
touch-action: manipulation;
|
|
vertical-align: baseline;
|
|
width: auto;
|
|
}
|
|
|
|
.button-6:hover,
|
|
.button-6:focus {
|
|
border-color: rgba(0, 0, 0, 0.15);
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
|
|
color: rgba(0, 0, 0, 0.65);
|
|
}
|
|
|
|
.button-6:hover {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.button-6:active {
|
|
background-color: #F0F0F1;
|
|
border-color: rgba(0, 0, 0, 0.15);
|
|
box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
|
|
color: rgba(0, 0, 0, 0.65);
|
|
transform: translateY(0);
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
{% block content %} {% endblock content %}
|
|
</body>
|
|
</html>
|