Skip to content

Commit

Permalink
Merge pull request #37 from etrusci-org/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
etrusci-org authored Jul 27, 2023
2 parents 97125d7 + 3c06302 commit 676b211
Show file tree
Hide file tree
Showing 16 changed files with 23 additions and 21 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Live stream overlay stuff for use as Browser-Source in [OBS Studio](https://gith

## Modules

- [chat](./app/mod/chat/chat.md)
- [clock](./app/mod/clock/clock.md)
- [colorfader](./app/mod/colorfader/colorfader.md)
- [goal](./app/mod/goal/goal.md)
- [numbers](./app/mod/numbers/numbers.md)
- [quotes](./app/mod/quotes/quotes.md)
- [rotator](./app/mod/rotator/rotator.md)
- [chat](./app/mod/chat/README.md)
- [clock](./app/mod/clock/README.md)
- [colorfader](./app/mod/colorfader/README.md)
- [goal](./app/mod/goal/README.md)
- [numbers](./app/mod/numbers/README.md)
- [quotes](./app/mod/quotes/README.md)
- [rotator](./app/mod/rotator/README.md)

---

Expand All @@ -37,6 +37,8 @@ All modules will output their content inside a `<div>` with the class `mod`. Som
}
```

For specific CSS selectors, see the individual README's of the modules.

Global default style: [app/lib/default.css](./app/lib/default.css)
For help with CSS see:

Expand Down
14 changes: 7 additions & 7 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<div style="padding: .25rem .5rem;">
<h1><a href="https://github.com/etrusci-org/olay/#readme" target="_blank">Olay</a></h1>
<ul style="line-height: 1.5; padding-left: 1rem;">
<li><a href="./?mod=chat">chat</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/chat/chat.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=clock">clock</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/clock/clock.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=colorfader">colorfader</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/colorfader/colorfader.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=goal">goal</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/goal/goal.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=numbers">numbers</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/numbers/numbers.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=quotes">quotes</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/quotes/quotes.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=rotator">rotator</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/rotator/rotator.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=chat">chat</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/chat/README.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=clock">clock</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/clock/README.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=colorfader">colorfader</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/colorfader/README.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=goal">goal</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/goal/README.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=numbers">numbers</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/numbers/README.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=quotes">quotes</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/quotes/README.md" target="_blank">docs</a>)</li>
<li><a href="./?mod=rotator">rotator</a> (<a href="https://github.com/etrusci-org/olay/blob/main/app/mod/rotator/README.md" target="_blank">docs</a>)</li>
</ul>
</div>
</div>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion app/mod/chat/chat.default.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* For help see "Output Styling" topic in chat.md */
/* For help see "Output Styling" topic in chat/README.md */

.mod {
position: absolute;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion app/mod/clock/clock.default.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* For help see "Output Styling" topic in clock.md */
/* For help see "Output Styling" topic in clock/README.md */
File renamed without changes.
2 changes: 1 addition & 1 deletion app/mod/colorfader/colorfader.default.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* For help see "Output Styling" topic in colorfader.md */
/* For help see "Output Styling" topic in colorfader/README.md */

body {
background: #000000;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion app/mod/goal/goal.default.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* For help see "Output Styling" topic in goal.md */
/* For help see "Output Styling" topic in goal/README.md */

.progressbar {
background: #801a00;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion app/mod/numbers/numbers.default.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* For help see "Output Styling" topic in numbers.md */
/* For help see "Output Styling" topic in numbers/README.md */
File renamed without changes.
2 changes: 1 addition & 1 deletion app/mod/quotes/quotes.default.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* For help see "Output Styling" topic in quotes.md */
/* For help see "Output Styling" topic in quotes/README.md */
File renamed without changes.
2 changes: 1 addition & 1 deletion app/mod/rotator/rotator.default.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* For help see "Output Styling" topic in rotator.md */
/* For help see "Output Styling" topic in rotator/README.md */

0 comments on commit 676b211

Please sign in to comment.