From ea1d94ea3faa5132c9d9c7e9fe26cbda92806e5e Mon Sep 17 00:00:00 2001 From: Isaiah Billingsley Date: Sat, 21 Feb 2026 01:07:11 -0500 Subject: [PATCH] Add usage instructions --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e142e94..3abdba4 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,28 @@ Simple Beat Saber stream overlay for [twitch.tv/iza_k](https://www.twitch.tv/iza_k) -Requires [BeatSaberPlus](https://github.com/hardcpp/BeatSaberPlus) +Requires [BeatSaberPlus](https://github.com/hardcpp/BeatSaberPlus) SongOverlay Screenshot + +## Usage - OBS Studio + +Add Source > Browser > URL: `https://bs-overlay.netlify.app/` + +### Configuration - Custom CSS +To change size, set root font size (default 10px) +```css +:root { font-size: 15px; } +``` +To right align +```css +body { flex-direction: row-reverse; } .row { justify-content: flex-end; } +``` +To change fade duration (default 300ms) +```css +body { transition-duration: 500ms; } +``` +To change font +```css +body { font-family: "Comic Sans MS", cursive; } +```