casino/frontend
Jan K9f ac6e3be52c
All checks were successful
Release / Release (push) Successful in 58s
Merge pull request 'Add all the renovate changes' (!115) from renovate-test into main
Reviewed-on: #115
2025-04-02 10:00:20 +00:00
..
docker chore(deps): update postgres docker tag to v17 2025-03-13 06:44:49 +00:00
public added images for the games 2025-02-19 13:02:13 +01:00
src feat(game-info): add placeholder and disable bet input 2025-04-02 11:38:14 +02:00
.editorconfig first 2024-09-11 10:40:00 +02:00
.gitignore first 2024-09-11 10:40:00 +02:00
.postcssrc.json feat: add TailwindCSS and PostCSS configuration (!6) 2025-02-05 10:26:15 +00:00
.prettierignore chore(setup): Add and configure prettier (!4) 2025-02-05 10:01:05 +00:00
.prettierrc chore(setup): Add and configure prettier (!4) 2025-02-05 10:01:05 +00:00
angular.json fix: Remove material css 2025-02-13 13:19:12 +01:00
bun.lock build(frontend): update ajv and ajv-formats versions 2025-04-02 11:42:53 +02:00
eslint.config.js style: Configure and run eslint 2025-02-13 10:58:13 +01:00
package.json build(frontend): update ajv and ajv-formats versions 2025-04-02 11:42:53 +02:00
README.md feat: add MIT License and update README for clarity 2025-03-12 14:29:21 +01:00
tsconfig.app.json first 2024-09-11 10:40:00 +02:00
tsconfig.json style(tsconfig): update path mappings to array syntax 2025-04-02 10:12:29 +02:00
tsconfig.spec.json first 2024-09-11 10:40:00 +02:00

Casino Gaming Platform - Frontend

This is the frontend application for the Casino Gaming Platform. It's built with Angular 18 and TailwindCSS, providing a responsive and modern UI for the casino gaming experience.

Development

Commands

  • Build: bun run build or bunx @angular/cli build
  • Start Dev Server: bun run start or bunx @angular/cli serve --proxy-config src/proxy.conf.json
  • Format Code: bun run format or prettier --write "src/**/*.{ts,html,css,scss}"
  • Lint: bun run lint or ng lint
  • Test: bun run test or bunx @angular/cli test
  • Test Single File: bunx @angular/cli test --include=path/to/test.spec.ts

Style Guide

Color Palette

Primary Colors

  • Deep Blue: #0a1219 (background)
  • Deep Blue Light: #121e27 (secondary background)
  • Deep Blue Contrast: #1a2835 (cards, elements)

Accent Colors

  • Emerald: #10b981 (primary buttons)
  • Emerald Dark: #059669 (button hover)
  • Emerald Light: #34d399 (highlights)

Text Colors

  • Primary Text: #ffffff (white)
  • Secondary Text: #94a3b8 (light gray)
  • Tertiary Text: #64748b (darker gray)

Additional Accents

  • Yellow: #fbbf24
  • Red: #ef4444
  • Purple: #8b5cf6

Typography

Font Sizes

  • Extra Small: Text-xs (footer disclaimers)
  • Small: Text-sm (navigation links, footer links)
  • Base: Text-base (general text)
  • Large: Text-lg (section headings)
  • Extra Large: Text-xl (stat numbers, game headings)
  • Display: Text-4xl/5xl/7xl (welcome bonus text)

Font Weights

  • Normal: General text
  • Medium: Labels
  • Semibold: Navigation brand
  • Bold: Headings, stats
  • Extrabold: Welcome bonus text

Components

Buttons

  • Primary: Emerald background with hover state
  • Secondary: Deep blue light background with hover state
  • All buttons have active scale effect (95%)
  • Transition duration: 200-300ms

Cards

  • Background: Deep blue contrast
  • Rounded corners (lg)
  • Shadow effects with hover transition
  • Consistent padding (p-4)

Navigation

  • Desktop: Horizontal links with hover effects
  • Mobile: Collapsible menu with toggle
  • Links have color and background transitions

Modals

  • Backdrop blur with dark overlay
  • Card-style container with emerald focus rings
  • Consistent form styling with transitions

Forms

Inputs

  • Dark background with border
  • Focus states with emerald accent
  • Consistent padding and rounded corners
  • Clear label positioning

Layout

Grid System

  • Mobile-first responsive grid
  • Breakpoints: sm, md, lg
  • Grid columns: 1 (mobile), 2 (tablet), 3 (desktop)
  • Consistent gap spacing (gap-4)

Spacing

  • Consistent margin/padding scale
  • Mobile-responsive spacing adjustments

Animation

  • Transitions: 200-500ms duration
  • Hover/active state animations
  • Scale transformations (95-110%)
  • Opacity transitions for navigation elements

Components & Classes

Common UI Elements

  • .card - Base card container
  • .button-primary - Main CTA buttons
  • .button-secondary - Alternative action buttons
  • .section-heading - Section titles
  • .nav-link - Navigation links
  • .modal-card - Modal container

Game Elements

  • .game-card-content - Game information container
  • .game-heading-sm - Small game titles
  • .game-heading-xl - Large game titles
  • .game-text - Game descriptions
  • .slider-container - Game carousel container

Responsive Design

  • Mobile-first approach
  • Tailwind breakpoints (sm, md, lg)
  • Different layouts based on screen size
  • Responsive text sizing and spacing
  • Hidden/visible elements using responsive classes

CSS Framework

  • Tailwind CSS for utility classes
  • Custom utility classes with @apply directive
  • CSS variables for theming
  • Component-based styling approach