Should be updating a bunch of the CSS to have some better mobile UX

This commit is contained in:
2025-12-09 20:07:43 -06:00
parent 216c53aade
commit f161d4f5c0
18 changed files with 659 additions and 960 deletions

View File

@@ -2,140 +2,101 @@
font-family: 'Courier New', monospace;
background: #0a0e27;
color: #00ffff;
}
.theme-cyberpunk .window {
background: rgba(10, 14, 39, 0.95);
border: 2px solid #00ffff;
box-shadow: 0 0 20px #ff00ff;
}
.window {
background: rgba(10, 14, 39, 0.95);
border: 2px solid #00ffff;
box-shadow: 0 0 20px #ff00ff;
}
.theme-cyberpunk .title-bar {
background: linear-gradient(90deg, #ff00ff, #00ffff);
color: #000;
padding: 12px;
font-weight: bold;
text-transform: uppercase;
}
.title-bar {
background: linear-gradient(90deg, #ff00ff, #00ffff);
color: #000;
padding: 12px;
font-weight: bold;
text-transform: uppercase;
}
.theme-cyberpunk fieldset {
border: 1px solid #ff00ff;
}
fieldset {
border: 1px solid #ff00ff;
}
.theme-cyberpunk legend {
color: #ff00ff;
text-transform: uppercase;
}
legend {
color: #ff00ff;
text-transform: uppercase;
}
.theme-cyberpunk button {
background: transparent;
border: 2px solid #ff00ff;
color: #ff00ff;
font-family: 'Courier New', monospace;
text-transform: uppercase;
padding: 10px 25px;
}
button {
background: transparent;
border: 2px solid #ff00ff;
color: #ff00ff;
font-family: 'Courier New', monospace;
text-transform: uppercase;
padding: 10px 25px;
&:hover {
background: #ff00ff;
color: #000;
}
}
.theme-cyberpunk button:hover {
background: #ff00ff;
color: #000;
}
.chart-display,
.dice-display {
background: rgba(0, 255, 255, 0.05);
border: 1px solid #00ffff;
}
.theme-cyberpunk .chart-display,
.theme-cyberpunk .dice-display {
background: rgba(0, 255, 255, 0.05);
border: 1px solid #00ffff;
}
.title {
color: #00ffff;
text-shadow: 0 0 20px #00ffff;
}
/* Home Page Styles */
.theme-cyberpunk .home-wrapper {
background: #0a0e27;
color: #00ffff;
}
.subtitle {
color: #ff00ff;
}
.theme-cyberpunk .home-window {
background: rgba(10, 14, 39, 0.95);
border: 2px solid #00ffff;
box-shadow: 0 0 30px #ff00ff;
}
.tab-button {
background: transparent;
border: 2px solid #ff00ff;
color: #ff00ff;
text-transform: uppercase;
&:hover {
background: #ff00ff;
color: #000;
box-shadow: 0 0 20px #ff00ff;
}
}
.theme-cyberpunk .home-title-bar {
background: linear-gradient(90deg, #ff00ff, #00ffff);
color: #000;
padding: 12px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
letter-spacing: 3px;
}
.back-button {
background: transparent;
border: 1px solid #ff00ff;
color: #ff00ff;
&:hover {
background: #ff00ff;
color: #000;
}
}
.theme-cyberpunk .home-content {
background: rgba(10, 14, 39, 0.5);
}
h1 {
color: #00ffff;
text-shadow: 0 0 20px #00ffff;
}
.theme-cyberpunk .title {
color: #00ffff;
text-shadow: 0 0 20px #00ffff;
}
h2 {
color: #ff00ff;
text-shadow: 0 0 15px #ff00ff;
}
.theme-cyberpunk .subtitle {
color: #ff00ff;
}
h3 {
color: #00ffff;
}
.theme-cyberpunk .tab-button {
background: transparent;
border: 2px solid #ff00ff;
color: #ff00ff;
text-transform: uppercase;
}
p,
li {
color: #00ffff;
}
.theme-cyberpunk .tab-button:hover {
background: #ff00ff;
color: #000;
box-shadow: 0 0 20px #ff00ff;
.point {
fill: #ff00ff;
filter: drop-shadow(0 0 5px #ff00ff);
}
}
/* Rules Page Styles */
.theme-cyberpunk .rules-wrapper {
background: #0a0e27;
color: #00ffff;
}
.theme-cyberpunk .back-button {
background: transparent;
border: 1px solid #ff00ff;
color: #ff00ff;
}
.theme-cyberpunk .back-button:hover {
background: #ff00ff;
color: #000;
}
.theme-cyberpunk .rules-content {
color: #00ffff;
}
.theme-cyberpunk h1 {
color: #00ffff;
text-shadow: 0 0 20px #00ffff;
}
.theme-cyberpunk h2 {
color: #ff00ff;
text-shadow: 0 0 15px #ff00ff;
}
.theme-cyberpunk h3 {
color: #00ffff;
}
.theme-cyberpunk p,
.theme-cyberpunk li {
color: #00ffff;
}
:global(.theme-cyberpunk) .point {
fill: #ff00ff;
filter: drop-shadow(0 0 5px #ff00ff);
}