-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Android improvements, incompatible browser detection. (#15)
* Improved Android phone browser performances. * Add incompatible web browser detection.
- Loading branch information
Showing
9 changed files
with
123 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Pražský Orloj - Simulator incompatible with your web browser</title> | ||
<base href="./"> | ||
<style> | ||
body { | ||
align-items: center; | ||
background: rgb(212,150,76); | ||
background: linear-gradient(90deg, | ||
rgba(212, 150, 76, 0.33) 0%, rgba(176, 186, 177, 0.33) 8%, rgba(140, 168, 167, 0.33) 17%, rgba(71, 153, 174, 0.33) 25%, | ||
rgba(24, 146, 178, 0.33) 33%, rgba(11, 138, 176, 0.33) 42%, rgba(18, 133, 174, 0.33) 50%, rgba(11, 138, 176, 0.33) 58%, | ||
rgba(24, 146, 178, 0.33) 67%, rgba(71, 153, 174, 0.33) 75%, rgba(140, 168, 167, 0.33) 83%, rgba(176, 186, 177, 0.33) 92%, | ||
rgba(212, 150, 76, 0.33) 100%); | ||
color: #444; | ||
display: flex; | ||
flex-direction: column; | ||
font: 14px Arial, Helvetica, sans-serif; | ||
margin: 1em; | ||
width: calc(100vw - 2em); | ||
} | ||
|
||
.page { | ||
background: none; | ||
width: calc(min(800px, calc(100vw - 2em))); | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="page"> | ||
<p>Your web browser does not have the capabilities needed to run the simulator.</p> | ||
<!-- cspell:disable --> | ||
<p>Váš webový prohlížeč nemá schopnosti potřebné ke spuštění simulátoru.</p> | ||
<p>Ihr Webbrowser verfügt nicht über die zum Ausführen des Simulators erforderlichen Funktionen.</p> | ||
<p>Su navegador web no tiene las capacidades necesarias para ejecutar el simulador.</p> | ||
<p>Votre navigateur Web n'a pas les capacités nécessaires pour exécuter le simulateur.</p> | ||
<a href="https://orloj.eu">orloj.eu</a> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters