make responsive
All checks were successful
Build docker container / Build image (push) Successful in 30s
All checks were successful
Build docker container / Build image (push) Successful in 30s
This commit is contained in:
parent
ef915583aa
commit
d8776bb51b
@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<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;
|
||||
font-size: 2rem;
|
||||
color: #333;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
@ -19,13 +19,13 @@
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
max-width: 90%;
|
||||
width: 100%;
|
||||
}
|
||||
li {
|
||||
padding: 15px 20px;
|
||||
padding: 15px 0px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
li:last-child {
|
||||
border-bottom: none;
|
||||
@ -40,15 +40,25 @@
|
||||
b {
|
||||
color: #000;
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
body {
|
||||
font-size: 3rem;
|
||||
padding: 40px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 900px) {
|
||||
body {
|
||||
font-size: 4rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
<body>
|
||||
<ul id="ips">
|
||||
<li>
|
||||
<span class="noselect">{{ .Type }}: </span><b>{{ .Address }}</b>
|
||||
</li>
|
||||
</ul>
|
||||
</body>
|
||||
<script>
|
||||
async function getIp() {
|
||||
const isIpv4 = "{{ .Type }}" == "IPv4";
|
||||
@ -70,4 +80,5 @@
|
||||
}
|
||||
getIp();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user