161 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			161 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta http-equiv="refresh" content="120" > 
 | 
						|
    <title>{{title}}</title>
 | 
						|
 | 
						|
    <style>
 | 
						|
body {background-color: D3D3D3;}
 | 
						|
h1   {color: green;}
 | 
						|
p {
 | 
						|
  padding: 10px;
 | 
						|
  margin: 20px;
 | 
						|
 | 
						|
}
 | 
						|
.content {
 | 
						|
  max-width: 1200px;
 | 
						|
  min-width: 1200px;
 | 
						|
  margin: auto;
 | 
						|
}
 | 
						|
a:link {
 | 
						|
  color: #0066ff;
 | 
						|
  text-decoration: none;
 | 
						|
}
 | 
						|
 | 
						|
/* visited link */
 | 
						|
a:visited {
 | 
						|
  color: #0066ff;
 | 
						|
  text-decoration: none;
 | 
						|
}
 | 
						|
 | 
						|
/* mouse over link */
 | 
						|
a:hover {
 | 
						|
  color: hotpink;
 | 
						|
  text-decoration: underline;
 | 
						|
}
 | 
						|
/* selected link */
 | 
						|
a:active {
 | 
						|
  color: #0066ff;
 | 
						|
  text-decoration: none;
 | 
						|
}
 | 
						|
.tooltip {
 | 
						|
  position: relative;
 | 
						|
  opacity: 1;
 | 
						|
  display: inline-block;
 | 
						|
  border-bottom: 1px dotted black;
 | 
						|
}
 | 
						|
 | 
						|
.tooltip .tooltiptext {
 | 
						|
  visibility: hidden;
 | 
						|
  width: 280px;
 | 
						|
  background-color: #6E6E6E;
 | 
						|
  box-shadow: 4px 4px 6px #800000;
 | 
						|
  color: #FFFFFF;
 | 
						|
  text-align: left;
 | 
						|
  border-radius: 6px;
 | 
						|
  padding: 8px 0;
 | 
						|
  left: 100%
 | 
						|
  opacity: 1;
 | 
						|
  /* Position the tooltip */
 | 
						|
  position: absolute;
 | 
						|
  z-index: 1;
 | 
						|
}
 | 
						|
 | 
						|
.tooltip:hover .tooltiptext {
 | 
						|
  right: 100%
 | 
						|
  opacity: 1;
 | 
						|
  visibility: visible;
 | 
						|
}
 | 
						|
.button {
 | 
						|
  background-color: #356244;
 | 
						|
  border: none;
 | 
						|
  color: white;
 | 
						|
  padding: 8px;
 | 
						|
  text-align: center;
 | 
						|
  text-decoration: none;
 | 
						|
  display: inline-block;
 | 
						|
  font-size: 14px;
 | 
						|
  font-weight: 500;
 | 
						|
  margin: 4px 2px;
 | 
						|
  border-radius: 8px;
 | 
						|
  box-shadow: 0px 8px 10px rgba(0,0,0,0.1);
 | 
						|
}
 | 
						|
.link {background-color: #356244;}
 | 
						|
.link:hover {background-color: #3e8e41;}
 | 
						|
 | 
						|
.dropbtn {
 | 
						|
  background-color: #356244;
 | 
						|
  border: none;
 | 
						|
  color: white;
 | 
						|
  padding: 8px;
 | 
						|
  text-align: center;
 | 
						|
  text-decoration: none;
 | 
						|
  display: inline-block;
 | 
						|
  font-size: 14px;
 | 
						|
  font-weight: 500;
 | 
						|
  margin: 4px 2px;
 | 
						|
  border-radius: 8px;
 | 
						|
  box-shadow: 0px 8px 10px rgba(0,0,0,0.1);
 | 
						|
}
 | 
						|
 | 
						|
/* The container <div> - needed to position the dropdown content */
 | 
						|
.dropdown {
 | 
						|
  position: relative;
 | 
						|
  display: inline-block;
 | 
						|
}
 | 
						|
 | 
						|
/* Dropdown Content (Hidden by Default) */
 | 
						|
.dropdown-content {
 | 
						|
  display: none;
 | 
						|
  position: absolute;
 | 
						|
  background-color: #f1f1f1;
 | 
						|
  min-width: 140px;
 | 
						|
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 | 
						|
  z-index: 1;
 | 
						|
}
 | 
						|
 | 
						|
/* Links inside the dropdown */
 | 
						|
.dropdown-content a {
 | 
						|
  color: black;
 | 
						|
  padding: 6px 16px;
 | 
						|
  text-decoration: none;
 | 
						|
  display: block;
 | 
						|
}
 | 
						|
 | 
						|
/* Change color of dropdown links on hover */
 | 
						|
.dropdown-content a:hover {background-color: #ddd;}
 | 
						|
 | 
						|
/* Show the dropdown menu on hover */
 | 
						|
.dropdown:hover .dropdown-content {display: block;}
 | 
						|
 | 
						|
/* Change the background color of the dropdown button when the dropdown content is shown */
 | 
						|
.dropdown:hover .dropbtn {background-color: #3e8e41;}
 | 
						|
table, td, th {border: .5px solid #d0d0d0; padding: 2px; border-collapse: collapse; text-align:center;}
 | 
						|
</style>
 | 
						|
</head>
 | 
						|
<div class="content">
 | 
						|
<body background="https://fra1od.freeboxos.fr:4443/paper.png">
 | 
						|
{% include 'header.html' %}
 | 
						|
<p style="text-align: center;"><b><em>Actualisation automatique toutes les 2min.</em></b></p>
 | 
						|
<fieldset style="background-color:#e0e0e0e0;text-algin: lef; margin-left:15px;margin-right:15px;font-size:14px;border-top-left-radius: 10px; border-top-right-radius: 10px;border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;">
 | 
						|
<table style="width:100%; font: 10pt arial, sans-serif">
 | 
						|
<tbody>
 | 
						|
<tr>
 | 
						|
<td><p align="center"><iframe style="border: none;" title="Bulletin" src="bulletin_board" width="620" height="550"></iframe></p></td>
 | 
						|
<td><p align="center"><iframe style="border: none;" title="Positions Reçues" src="positions" width="580" height="550"></iframe></p></td>
 | 
						|
</tr>
 | 
						|
<tr>
 | 
						|
<td colspan="2" align="center">
 | 
						|
<fieldset style="width: 1200px; margin-left:0px;margin-right:0px;font-size:14px;border-top-left-radius: 10px; border-top-right-radius: 10px;border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;"><legend><b><font color="#000"> .: Log DMR Data :. </font></b></legend>
 | 
						|
         <div style="height: 20em; text-align: left; font-size:13px; background-color: #000000; color:#b1eee9;" >
 | 
						|
         <iframe style="border: none;" title="log" src="logdaprs" width="1200" height="250">
 | 
						|
         </div>
 | 
						|
</fieldset>
 | 
						|
</td>
 | 
						|
</tr>
 | 
						|
</tbody>
 | 
						|
</table>
 | 
						|
</fieldset>
 | 
						|
 {% include 'footer.html' %}
 |