diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-11-30 03:10:01 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-11-30 03:10:01 +0900 |
| commit | 277ff78fa74be86de86fdfa66af7f4ae2fb17980 (patch) | |
| tree | bc4a24da8eb24149460f950ef73eefa9653d704a /services/nuldoc/public/default/style.css | |
| parent | 1730a81a6560c2baa75791d6edba2e2a1d997d4e (diff) | |
| download | nsfisis.dev-277ff78fa74be86de86fdfa66af7f4ae2fb17980.tar.gz nsfisis.dev-277ff78fa74be86de86fdfa66af7f4ae2fb17980.tar.zst nsfisis.dev-277ff78fa74be86de86fdfa66af7f4ae2fb17980.zip | |
feat(slides): Update style of slide controller buttons
Diffstat (limited to 'services/nuldoc/public/default/style.css')
| -rw-r--r-- | services/nuldoc/public/default/style.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/services/nuldoc/public/default/style.css b/services/nuldoc/public/default/style.css index 8c848bc..32dd4f5 100644 --- a/services/nuldoc/public/default/style.css +++ b/services/nuldoc/public/default/style.css @@ -418,3 +418,33 @@ img { color: #000; border-bottom-color: #000; } + +.controllers { + display: flex; + flex-direction: column; + align-items: end; + margin: 1rem 0; +} + +.controllers-buttons { + display: flex; + align-items: center; + gap: 1rem; +} + +.controllers button { + width: 3.5rem; + height: 3rem; + border-radius: 0.5rem; + background: #000; + display: flex; + align-items: center; + justify-content: center; + color: #fff; + border: none; + cursor: pointer; +} + +.controllers button:hover { + background: #555; +} |
