diff --git a/web/client/src/App.css b/web/client/src/App.css index 6130fcc..e440217 100644 --- a/web/client/src/App.css +++ b/web/client/src/App.css @@ -4,6 +4,31 @@ @import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap'); +/* === Cross-link Button === */ +.cross-link-btn { + display: flex; + align-items: center; + gap: 0.25rem; + padding: 0.375rem 0.75rem; + border: 2px solid var(--mc-dark); + background: #2e4a8b; + color: var(--mc-text-aqua); + font-size: 0.7rem; + font-weight: 700; + font-family: 'Silkscreen', 'Courier New', monospace; + text-shadow: 1px 1px 0 var(--mc-dark); + text-decoration: none; + cursor: pointer; + transition: all 0.1s; + box-shadow: inset 0 1px 0 #4466bb, inset 0 -1px 0 #1a2a66; + white-space: nowrap; +} + +.cross-link-btn:hover { + background: #3e5a9b; + color: white; +} + :root { --mc-dark: #1a1a1a; --mc-darker: #0e0e0e;