make responsive
All checks were successful
Build docker container / Build image (push) Successful in 30s

This commit is contained in:
Mans Ziesel 2024-06-03 14:28:04 +02:00
parent ef915583aa
commit d8776bb51b

View File

@ -1,54 +1,64 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>My IP</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, sans-serif;
font-size: 5rem;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
ul {
list-style: none;
padding: 0;
margin: 0;
background: #fff;
border-radius: 8px;
overflow: hidden;
}
li {
padding: 15px 20px;
border-bottom: 1px solid #ddd;
}
li:last-child {
border-bottom: none;
}
.noselect {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #555;
}
b {
color: #000;
}
</style>
</head>
<body>
<ul id="ips">
<li>
<span class="noselect">{{ .Type }}: </span><b>{{ .Address }}</b>
</li>
</ul>
</body>
<head>
<title>My IP</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, sans-serif;
font-size: 2rem;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
ul {
list-style: none;
padding: 0;
margin: 0;
max-width: 90%;
width: 100%;
}
li {
padding: 15px 0px;
border-bottom: 1px solid #ddd;
word-wrap: break-word;
}
li:last-child {
border-bottom: none;
}
.noselect {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #555;
}
b {
color: #000;
}
@media (min-width: 600px) {
body {
font-size: 3rem;
padding: 40px;
}
}
@media (min-width: 900px) {
body {
font-size: 4rem;
}
}
</style>
</head>
<body>
<ul id="ips">
<li>
<span class="noselect">{{ .Type }}: </span><b>{{ .Address }}</b>
</li>
</ul>
<script>
async function getIp() {
const isIpv4 = "{{ .Type }}" == "IPv4";
@ -70,4 +80,5 @@
}
getIp();
</script>
</body>
</html>