Changed Title
This commit is contained in:
8
app.py
8
app.py
@@ -9,7 +9,7 @@ HTML_TEMPLATE = """<!doctype html>
|
|||||||
<html lang="it">
|
<html lang="it">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>myip – IP & RIPE Lookup</title>
|
<title>SolidData – IP & RIPE Lookup</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
@@ -32,11 +32,13 @@ HTML_TEMPLATE = """<!doctype html>
|
|||||||
|
|
||||||
<div class="ip-wrapper">
|
<div class="ip-wrapper">
|
||||||
<span id="ip-value" class="ip">{{ ip }}</span>
|
<span id="ip-value" class="ip">{{ ip }}</span>
|
||||||
<button id="copy-btn" class="copy-btn" type="button">
|
</div>
|
||||||
|
|
||||||
|
<button id="copy-btn" class="copy-btn copy-btn-below" type="button">
|
||||||
<span class="copy-icon">📋</span>
|
<span class="copy-icon">📋</span>
|
||||||
<span class="copy-label">Copia IP</span>
|
<span class="copy-label">Copia IP</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="divider"></div>
|
<div class="divider"></div>
|
||||||
|
|
||||||
|
|||||||
@@ -45,3 +45,13 @@ body {
|
|||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
/* wrapper solo per l'IP */
|
||||||
|
.ip-wrapper {
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* bottone sotto l'IP */
|
||||||
|
.copy-btn-below {
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user