Skip to content

Commit 7ff31e1

Browse files
authored
Initial commit
0 parents  commit 7ff31e1

File tree

6 files changed

+113
-0
lines changed

6 files changed

+113
-0
lines changed

.editorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
indent_style = space
7+
indent_size = 2

LICENSE.txt

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
The Universal Permissive License
2+
UPL-1.0
3+
© deepskyblue
4+
5+
Subject to the condition set forth below, permission is hereby granted to any
6+
person obtaining a copy of this software, associated documentation and/or data
7+
(collectively the "Software"), free of charge and under any and all copyright
8+
rights in the Software, and any and all patent rights owned or freely
9+
licensable by each licensor hereunder covering either (i) the unmodified
10+
Software as contributed to or provided by such licensor, or (ii) the Larger
11+
Works (as defined below), to deal in both
12+
13+
(a) the Software, and
14+
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
15+
one is included with the Software (each a “Larger Work” to which the Software
16+
is contributed by such licensors),
17+
18+
without restriction, including without limitation the rights to copy, create
19+
derivative works of, display, perform, and distribute the Software and make,
20+
use, sell, offer for sale, import, export, have made, and have sold the
21+
Software and the Larger Work(s), and to sublicense the foregoing rights on
22+
either these or other terms.
23+
24+
This license is subject to the following condition:
25+
The above copyright notice and either this complete permission notice or at
26+
a minimum a reference to the UPL must be included in all copies or
27+
substantial portions of the Software.
28+
29+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35+
SOFTWARE.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### [atmosphere](https://s9a.page/atmosphere) template
2+
3+
[**generate** atmosphere](https://github.com/new?template_name=atmosphere&template_owner=s9a)

index.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<meta charset="utf-8">
4+
5+
<title>atmosphere</title>
6+
7+
<meta name="viewport" content="width=device-width">
8+
<meta name="theme-color" content="skyblue">
9+
<meta name="color-scheme" content="dark light">
10+
<meta name="description" content="web atmosphere github template blue wind whisper">
11+
12+
<link rel="stylesheet" href="wind.css" media="(color)">
13+
<link rel="stylesheet" href="whisper.css">
14+
15+
<link rel="home" href="https://s9a.page">
16+
<link rel="help" href="https://s9a.org/atmosphere">
17+
18+
<article>
19+
<h1>
20+
<a href="https://s9a.page">wwworld wide waves</a>
21+
</h1>
22+
23+
<p>
24+
<a href="https://s9a.page/license">opensource atmosphere</a>
25+
</p>
26+
27+
<p>
28+
<a href="https://webmural.com/poft">fres<b>h air</b></a>
29+
</p>
30+
</article>

whisper.css

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
html {
2+
font-family: sans-serif;
3+
font-size: max(1em, 1vmax + 1vmin + 1pt);
4+
}
5+
6+
body {
7+
display: flex;
8+
flex-flow: column;
9+
margin: 1.618rem;
10+
overflow-wrap: anywhere;
11+
}
12+
13+
:focus {
14+
outline: thick dotted;
15+
}
16+
17+
:any-link:hover {
18+
text-decoration-style: double;
19+
}

wind.css

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
::selection { background: #ec0 }
2+
:any-link { color: darkblue }
3+
:root {
4+
background: skyblue;
5+
color: midnightblue;
6+
}
7+
8+
@media (prefers-contrast: more) {
9+
:root {
10+
background: powderblue;
11+
color: black;
12+
}
13+
}
14+
15+
@media (prefers-color-scheme: dark) {
16+
:root {
17+
background: deepskyblue;
18+
}
19+
}

0 commit comments

Comments
 (0)