reverted 5ddc2d7080ec96e24326c5c144bd87ebe9acd8d3

This commit is contained in:
Simone Margaritelli 2019-11-05 18:51:01 +01:00
parent 5ddc2d7080
commit 106d72c4a2
3 changed files with 13 additions and 17 deletions
pwnagotchi/ui/web

@ -9,18 +9,14 @@
}
img#ui {
width: 100vw;
height:100%;
max-width:100vw;
object-fit: contain;
width:100%;
}
.full {
position: absolute;
top:0;
left:0;
height: 100vh;
width: 100vw;
width:100%;
}
.pixelated {

@ -1,7 +1,7 @@
<html>
<head>
<title>{{ title }}</title>
<link rel="stylesheet" type="text/css" href="/css/style.css?v=1.1"/>
<link rel="stylesheet" type="text/css" href="/css/style.css"/>
</head>
<body>
<div class="full pixelated">

@ -1,12 +1,12 @@
<html>
<head>
<title>{{ title }}</title>
<meta http-equiv="refresh" content="{{ go_back_after }};URL=/">
<link rel="stylesheet" type="text/css" href="/css/style.css?v=1.1"/>
</head>
<body>
<div class="status">
{{ message }}
</div>
</body>
<head>
<title>{{ title }}</title>
<meta http-equiv="refresh" content="{{ go_back_after }};URL=/">
<link rel="stylesheet" type="text/css" href="/css/style.css"/>
</head>
<body>
<div class="status">
{{ message }}
</div>
</body>
</html>