-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added wake time disables screensaver feature (in progress)
* refresh page when network disconnected or page error * allow for utf-8 text in speak command for http
- Loading branch information
1 parent
7da979a
commit 6fbf0eb
Showing
12 changed files
with
345 additions
and
48 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
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,34 @@ | ||
<!-- | ||
~ Copyright (c) 2021 ThanksMister LLC | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software distributed | ||
~ under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
|
||
<div class="wrapper"> | ||
<div class="box"> | ||
<center> | ||
<img src="icon.png" width="360px" height="360px"> | ||
<h1>Connection Error</h1> | ||
<p>This page will automatically reload when connected.</p> | ||
</center> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,62 @@ | ||
html { box-sizing: border-box; } | ||
|
||
*, | ||
*::before, | ||
*::after { box-sizing: inherit; } | ||
|
||
body * { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
font: normal 100%/1.15 "Merriweather", serif; | ||
background-color: #ffffff; | ||
color: #fff; | ||
} | ||
|
||
.wrapper { | ||
position: relative; | ||
max-width: 1298px; | ||
height: auto; | ||
margin: 1em auto 0 auto; | ||
} | ||
|
||
/* https://www.flaticon.com/authors/vectors-market */ | ||
/* https://www.flaticon.com/authors/icomoon */ | ||
.box { | ||
max-width: 70%; | ||
min-height: auto; | ||
margin: 0 auto; | ||
padding: 2em 0em; | ||
text-align: center; | ||
} | ||
|
||
h1, p:not(:last-of-type) { } | ||
|
||
h1 { | ||
margin: 0 0 1rem 0; | ||
font-size: 2em; | ||
color: #216f79; | ||
} | ||
|
||
p { | ||
margin-top: 0.5em; | ||
margin-bottom: 0.5em; | ||
font-size: 1.5em; | ||
text-align: center; | ||
color: #216f79; | ||
} | ||
|
||
p:first-of-type { margin-top: 0em; } | ||
|
||
p > a { | ||
border-bottom: 1px dashed #216f79; | ||
font-style: italic; | ||
text-decoration: none; | ||
color: #216f79; | ||
} | ||
|
||
p > a:hover { text-shadow: 0 0 6px #216f79; } | ||
|
||
p img { vertical-align: bottom; } |
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
Oops, something went wrong.