Skip to content

Commit 95f033f

Browse files
authored
Initial commit
0 parents  commit 95f033f

File tree

7 files changed

+162
-0
lines changed

7 files changed

+162
-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

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.DS_Store

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## [eleven love mural](https://webmural.com/lllllllllll)
2+

UNLICENSE.txt

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <https://unlicense.org>

coin.svg

+7
Loading

index.html

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<meta charset="utf-8">
4+
<title>lllllllllll mural</title>
5+
<meta name="viewport" content="width=device-width">
6+
<meta name="theme-color" content="indigo">
7+
<meta name="color-scheme" content="dark light">
8+
<meta name="description" content="love love love mural">
9+
10+
<style media=(color)>
11+
html { background: plum; color: black }
12+
:any-link { color: inherit }
13+
:any-link:focus { background: turquoise; color: indigo }
14+
::selection { background: violet; color: #212 }
15+
details { background: violet; color: indigo }
16+
details:nth-child(odd) { background: thistle; color: indigo }
17+
</style>
18+
19+
<link rel="stylesheet" href="magnet.css">
20+
<link rel="icon" href="coin.svg">
21+
22+
<base href="https://webmural.com">
23+
24+
<link rel="prev" href="https://webmural.com/magnet">
25+
<link rel="next" href="https://webmural.com/iona">
26+
<link rel="help" href="https://webmural.com/code">
27+
28+
<figure aria-label="magnet">
29+
<details>
30+
<summary>l</summary>
31+
<a href="/magnet">sneeze</a>
32+
</details>
33+
<details>
34+
<summary>l</summary>
35+
<a href="/broove">breathe</a>
36+
</details>
37+
<details>
38+
<summary>l</summary>
39+
<a href="/spellbound">peace</a>
40+
</details>
41+
<details>
42+
<summary>l</summary>
43+
<a href="/nan">squeeze</a>
44+
</details>
45+
<details>
46+
<summary>l</summary>
47+
<a href="/nature">stream</a>
48+
</details>
49+
<details>
50+
<summary>l</summary>
51+
<a href="/turf">smeeze</a>
52+
</details>
53+
<details>
54+
<summary>l</summary>
55+
<a href="/pudding">sleeve</a>
56+
</details>
57+
<details>
58+
<summary>l</summary>
59+
<a href="/monsoon">breeze</a>
60+
</details>
61+
<details>
62+
<summary>l</summary>
63+
<a href="/foaf">deep</a>
64+
</details>
65+
<details class="zoe">
66+
<summary>l</summary>
67+
<a href="/bee">bee</a>
68+
</details>
69+
<details>
70+
<summary>l</summary>
71+
<a href="/xyz">bleed</a>
72+
</details>
73+
<details>
74+
<summary>💋</summary>
75+
<a href="/love">love</a>
76+
is <a href="/"><em>all you</em></a>
77+
</details>
78+
</figure>

magnet.css

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
:root {
2+
font-family: sans-serif;
3+
font-size: max(5ex, 3vmin + 3vmax);
4+
}
5+
6+
:any-link {
7+
text-decoration-style: wavy;
8+
}
9+
10+
:focus {
11+
outline: thick groove;
12+
}
13+
14+
body {
15+
margin: auto;
16+
overflow-wrap: anywhere;
17+
}
18+
19+
figure {
20+
display: flex;
21+
justify-content: center;
22+
flex-flow: row wrap;
23+
margin: auto;
24+
min-height: 100vh;
25+
}
26+
27+
details {
28+
flex-basis: calc(100% / 3);
29+
contain: content;
30+
}
31+
32+
summary {
33+
font-size: 2em;
34+
padding: 2vh 2vw;
35+
display: flex;
36+
cursor: crosshair;
37+
}
38+
39+
em {
40+
font-family: cursive;
41+
font-style: inherit;
42+
}

0 commit comments

Comments
 (0)