generated from webmural/dbqp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
132 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
### [`bluv` mural](https://webmural.com/bluv) | ||
### [poft mural](https://webmural.com/poft) | ||
|
||
[`tape` sample](https://s9a.page/tape) | ||
[tape](https://s9a.page/tape) [shadow mixture](poft.css) |
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,37 @@ | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
a { | ||
flex-basis: 20%; | ||
display: inline-block; | ||
padding: 1ch; | ||
text-decoration: dotted overline; | ||
} | ||
|
||
h1 { | ||
display: flex; | ||
align-items: center; | ||
flex-flow: column; | ||
margin: auto; | ||
padding-block: 3ex; | ||
} | ||
|
||
html { | ||
font-family: sans-serif; | ||
font-size: max(2em, 3vmax + 3vmin); | ||
line-height: 1.618; | ||
} | ||
|
||
body { | ||
border: 0rem solid; | ||
margin: 0; | ||
overflow-wrap: anywhere; | ||
padding: 1ch; | ||
} | ||
|
||
p { margin: 5em -1em 1em } | ||
.pulp { font-size: 2rem } | ||
.bulb { font-size: 3rem } | ||
|
||
|
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 |
---|---|---|
@@ -1,16 +1,46 @@ | ||
/* https://s9a.page/tape */ | ||
:root{--tape-filter:none;--tape-bluv:#11dff1;--tape-play:#fbbfff;--tape-loud:#eee833;--tape-luvu:#44f477;--tape-blaq:#0e0e0e;--tape-watt:#e0e0e0;--tape-hex:#e0e0e0;--tape-mix:transparent}.tape-watt{--tape-hex:var(--tape-watt)}.tape-luvu{--tape-hex:var(--tape-luvu)}.tape-loud{--tape-hex:var(--tape-loud)}.tape-play{--tape-hex:var(--tape-play)}.tape-bluv{--tape-hex:var(--tape-bluv)}.tape-flat{border-color:transparent}.tape-flap{border-color:currentColor}.tape-flow{--tape-remix:none}.tape-flow :not(.tape-skip){background-color:transparent;color:inherit}.tape-blaq,.tape-bluv,.tape-loud,.tape-luvu,.tape-play,.tape-watt{--tape-mix:var(--tape-hex);--tape-remix:none;color:var(--tape-blaq)!important;background-color:var(--tape-mix)!important;background-image:var(--tape-remix);filter:var(--tape-filter)}.tape-blaq{--tape-mix:var(--tape-blaq);color:var(--tape-hex)!important}.tape-erase,.tape-erase *{color:transparent!important} | ||
|
||
::selection { | ||
background: deeppink; | ||
color: #0e0e0e; | ||
/* play */ | ||
|
||
:root { | ||
--tape-play: #e2e; | ||
--tape-luvu: aquamarine; | ||
--tape-blaq: chocolate; | ||
} | ||
|
||
:focus-within { | ||
--tape-filter: hue-rotate(9deg); | ||
::selection { | ||
background: darkviolet; | ||
color: gold; | ||
} | ||
|
||
:focus { | ||
--tape-filter: hue-rotate(-72deg); | ||
outline: thick outset; | ||
} | ||
outline: .5rem dotted blueviolet; | ||
} | ||
|
||
.poft { | ||
text-shadow: | ||
0 1vh 0 blueviolet, | ||
0 2vh 0 darkviolet, | ||
-2rem -2rem 2pc magenta, | ||
-1rem -1rem 1pc magenta, | ||
3rem -3rem 3pc cyan, | ||
5rem -5rem 5pc cyan; | ||
} | ||
|
||
.feet { | ||
text-shadow: | ||
0 1vh 0, | ||
0 2vh 0, | ||
0 3vh 0 blueviolet, | ||
0 5vh 0 darkviolet, | ||
0rem 3rem 1pc magenta, | ||
0rem 2rem 2pc magenta, | ||
0rem 1rem 1pc magenta, | ||
0rem 2rem 2pc darkviolet, | ||
0rem 3rem 3pc darkviolet, | ||
0rem 5rem 3pc darkviolet, | ||
0rem 8rem 3pc plum, | ||
0rem 8rem 3pc salmon, | ||
0rem 8rem 3pc blueviolet; | ||
} |