More optimizations
This commit is contained in:
parent
454bdbe598
commit
a661f7cfee
5 changed files with 88 additions and 81 deletions
|
@ -5,7 +5,7 @@ services:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: osg.dockerfile
|
dockerfile: osg.dockerfile
|
||||||
|
|
||||||
image: osg:27 # <--automate this number change to trigger stack redeploy.
|
image: osg:28 # <--automate this number change to trigger stack redeploy.
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
DOCKER: "true"
|
DOCKER: "true"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<!DOCTYPE html lang="en">
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>How To Use - Open Signature Generator</title>
|
<title>How To Use - Open Signature Generator</title>
|
||||||
<meta name="Open Signature Generator" />
|
<meta name="Open Signature Generator" />
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<!DOCTYPE html lang="en">
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Open Signature Generator</title>
|
<title>Open Signature Generator</title>
|
||||||
<meta name="Open Signature Generator" />
|
<meta name="Open Signature Generator" />
|
||||||
|
@ -6,51 +7,53 @@
|
||||||
<meta name="keywords" content="open signature generator, signature, sign, digital signature, electronic signature, esign, e-signature, e-sign, pdf, qrcode, open source, free, privacy, docusign, adobe acrobat" />
|
<meta name="keywords" content="open signature generator, signature, sign, digital signature, electronic signature, esign, e-signature, e-sign, pdf, qrcode, open source, free, privacy, docusign, adobe acrobat" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
|
||||||
|
|
||||||
|
<!-- Add critical layout CSS inline to prevent layout shift -->
|
||||||
|
<style>
|
||||||
|
.hidden {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
#document-container {
|
||||||
|
width: 70%;
|
||||||
|
max-width: 500px;
|
||||||
|
height: 300px;
|
||||||
|
margin: 100px auto 20px auto;
|
||||||
|
padding: 40px;
|
||||||
|
}
|
||||||
|
.document-content {
|
||||||
|
position: absolute;
|
||||||
|
width: calc(100% - 80px);
|
||||||
|
bottom: 100px;
|
||||||
|
line-height: 1.5;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.controls {
|
||||||
|
margin: 20px auto;
|
||||||
|
padding: 10px 20px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 20px;
|
||||||
|
width: 80%;
|
||||||
|
max-width: 540px;
|
||||||
|
}
|
||||||
|
#title-container {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
top: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<!-- Add critical layout CSS inline to prevent layout shift -->
|
|
||||||
<style>
|
|
||||||
.hidden {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
#document-container {
|
|
||||||
width: 70%;
|
|
||||||
max-width: 500px;
|
|
||||||
height: 300px;
|
|
||||||
margin: 100px auto 20px auto;
|
|
||||||
padding: 40px;
|
|
||||||
}
|
|
||||||
.document-content {
|
|
||||||
position: absolute;
|
|
||||||
width: calc(100% - 80px);
|
|
||||||
bottom: 100px;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
.controls {
|
|
||||||
margin: 20px auto;
|
|
||||||
padding: 10px 20px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 20px;
|
|
||||||
width: 80%;
|
|
||||||
max-width: 540px;
|
|
||||||
}
|
|
||||||
#title-container {
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
top: 20px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<body>
|
<body>
|
||||||
<div id="title-container">
|
<div id="title-container">
|
||||||
<h1>
|
<h1>
|
||||||
|
@ -732,4 +735,5 @@
|
||||||
background-color: #095fbf;
|
background-color: #095fbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
</html>
|
|
@ -1,5 +1,5 @@
|
||||||
<!DOCTYPE html lang="en">
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Privacy Policy - Open Signature Generator</title>
|
<title>Privacy Policy - Open Signature Generator</title>
|
||||||
<meta name="Open Signature Generator" />
|
<meta name="Open Signature Generator" />
|
||||||
|
@ -201,4 +201,4 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</html>
|
</html>
|
|
@ -1,38 +1,40 @@
|
||||||
<!DOCTYPE html lang="en">
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Open Signature Generator</title>
|
<title>Open Signature Generator</title>
|
||||||
<meta name="Open Signature Generator" />
|
<meta name="Open Signature Generator" />
|
||||||
<meta name="description" content="Generate and verify document signatures for free!" />
|
<meta name="description" content="Generate and verify document signatures for free!" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
|
||||||
|
|
||||||
|
<!-- Add critical layout CSS inline to prevent layout shift -->
|
||||||
|
<style>
|
||||||
|
.hidden {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
#document-container {
|
||||||
|
width: 70%;
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 100px auto 20px auto;
|
||||||
|
padding: 40px;
|
||||||
|
}
|
||||||
|
#title-container {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
top: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<!-- Add critical layout CSS inline to prevent layout shift -->
|
|
||||||
<style>
|
|
||||||
.hidden {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
#document-container {
|
|
||||||
width: 70%;
|
|
||||||
max-width: 600px;
|
|
||||||
margin: 100px auto 20px auto;
|
|
||||||
padding: 40px;
|
|
||||||
}
|
|
||||||
#title-container {
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
top: 20px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<body>
|
<body>
|
||||||
<div id="title-container">
|
<div id="title-container">
|
||||||
<h1>
|
<h1>
|
||||||
|
@ -303,4 +305,5 @@
|
||||||
transition: opacity 0.5s ease-in-out;
|
transition: opacity 0.5s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
</html>
|
Loading…
Add table
Reference in a new issue