mirror of
https://github.com/appen-isen/projet-cal.git
synced 2026-01-18 16:47:38 +01:00
feat: new design + dockerize app
This commit is contained in:
38
.dockerignore
Normal file
38
.dockerignore
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
# Git
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
.gitattributes
|
||||||
|
|
||||||
|
# Documentation
|
||||||
|
README.md
|
||||||
|
*.md
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Build artifacts
|
||||||
|
backend/main
|
||||||
|
*.exe
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Node modules (if any)
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
# Test files
|
||||||
|
*_test.go
|
||||||
|
|
||||||
|
# Bruno API client
|
||||||
|
backend/API-Projet-CAL
|
||||||
|
|
||||||
|
# Makefile
|
||||||
|
Makefile
|
||||||
46
Dockerfile
Normal file
46
Dockerfile
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
# Multi-stage build for optimized image size
|
||||||
|
FROM golang:1.23-alpine AS backend-builder
|
||||||
|
|
||||||
|
# Install build dependencies
|
||||||
|
RUN apk add --no-cache git
|
||||||
|
|
||||||
|
# Set working directory for backend
|
||||||
|
WORKDIR /app/backend
|
||||||
|
|
||||||
|
# Copy go mod files
|
||||||
|
COPY backend/go.mod backend/go.sum ./
|
||||||
|
|
||||||
|
# Download dependencies
|
||||||
|
RUN go mod download
|
||||||
|
|
||||||
|
# Copy backend source code
|
||||||
|
COPY backend/ ./
|
||||||
|
|
||||||
|
# Build the application
|
||||||
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main .
|
||||||
|
|
||||||
|
# Final stage - minimal image
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
# Install ca-certificates for HTTPS requests
|
||||||
|
RUN apk --no-cache add ca-certificates tzdata
|
||||||
|
|
||||||
|
# Set timezone (adjust as needed)
|
||||||
|
ENV TZ=Europe/Paris
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Copy the built binary from builder
|
||||||
|
COPY --from=backend-builder /app/backend/main .
|
||||||
|
|
||||||
|
# Copy frontend files
|
||||||
|
COPY frontend/ ./frontend/
|
||||||
|
|
||||||
|
# Copy backend data file
|
||||||
|
COPY backend/date_link.txt ./
|
||||||
|
|
||||||
|
# Expose port
|
||||||
|
EXPOSE 8080
|
||||||
|
|
||||||
|
# Run the application
|
||||||
|
CMD ["./main"]
|
||||||
1
backend/.env.example
Normal file
1
backend/.env.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
FILE_NAME=date_link.txt
|
||||||
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
calendrier-avent:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
container_name: calendrier-avent-isen
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
environment:
|
||||||
|
- FILE_NAME=date_link.txt
|
||||||
|
- GIN_MODE=release
|
||||||
|
volumes:
|
||||||
|
# Mount date_link.txt so you can update it without rebuilding
|
||||||
|
- ./backend/date_link.txt:/app/date_link.txt:ro
|
||||||
|
restart: unless-stopped
|
||||||
@@ -1,19 +1,44 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Calendrier de l'Avent</title>
|
<title>Calendrier de l'Avent</title>
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Jim+Nightshade&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@300;400;600&display=swap"
|
||||||
|
rel="stylesheet">
|
||||||
<link rel="stylesheet" href="static/style.css">
|
<link rel="stylesheet" href="static/style.css">
|
||||||
<link rel="icon" href="static/assets/favicon.png" type="image/x-icon">
|
<link rel="icon" href="static/assets/favicon.png" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="background-blur"></div>
|
<div class="snowflakes" aria-hidden="true">
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
<div class="snowflake">❅</div>
|
||||||
|
<div class="snowflake">❆</div>
|
||||||
|
</div>
|
||||||
<div class="background">
|
<div class="background">
|
||||||
<h1>Calendrier de l'Avent 2024</h1>
|
<h1>Calendrier de l'Avent 2025</h1>
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<div class="box box-5" id="day-5">5</div>
|
<div class="box box-5" id="day-5">5</div>
|
||||||
<div class="box box-17" id="day-17">17</div>
|
<div class="box box-17" id="day-17">17</div>
|
||||||
@@ -40,8 +65,11 @@
|
|||||||
<div class="box box-16" id="day-16">16</div>
|
<div class="box box-16" id="day-16">16</div>
|
||||||
<div class="box box-21" id="day-21">21</div>
|
<div class="box box-21" id="day-21">21</div>
|
||||||
</div>
|
</div>
|
||||||
<h2>Site réalisé par Appen pour le BDE de l’ISEN Nantes</h2>
|
<footer class="footer">
|
||||||
|
<p>🎄 Site réalisé par <span class="highlight">Appen</span> pour le BDE de l'ISEN Nantes 🎄</p>
|
||||||
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
<script src="static/script.js"></script>
|
<script src="static/script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 809 KiB |
@@ -1,178 +1,871 @@
|
|||||||
|
/* ===========================
|
||||||
|
VARIABLES & RESET
|
||||||
|
=========================== */
|
||||||
|
:root {
|
||||||
|
--primary-bg: #0a1628;
|
||||||
|
--secondary-bg: #1a2742;
|
||||||
|
--accent-red: #c41e3a;
|
||||||
|
--accent-gold: #d4af37;
|
||||||
|
--accent-white: #f8f9fa;
|
||||||
|
--text-light: #ffffff;
|
||||||
|
--shadow-color: rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-family: 'Quicksand', sans-serif;
|
font-family: "Poppins", sans-serif;
|
||||||
background: linear-gradient(to bottom, #005f73, #0a9396);
|
background: linear-gradient(135deg, #0a1628 0%, #1a2742 50%, #2d3e5f 100%);
|
||||||
color: #fff;
|
color: var(--text-light);
|
||||||
}
|
min-height: 100vh;
|
||||||
|
overflow-x: hidden;
|
||||||
.background {
|
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 100vh;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
overflow: hidden;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,h2 {
|
/* ===========================
|
||||||
font-family: "Jim Nightshade", cursive;
|
SNOWFLAKES ANIMATION
|
||||||
font-weight: 400;
|
=========================== */
|
||||||
font-style: normal;
|
.snowflakes {
|
||||||
margin: 0;
|
position: fixed;
|
||||||
text-align: center;
|
|
||||||
color: black;
|
|
||||||
position: relative; /* Assurez-vous que le titre est positionné relativement */
|
|
||||||
z-index: 1; /* Placez le titre au-dessus de l'arrière-plan flou */
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.background-blur {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: url('assets/bg-winter.png') no-repeat center center;
|
pointer-events: none;
|
||||||
background-size: cover;
|
z-index: 1;
|
||||||
filter: blur(5px);
|
overflow: hidden;
|
||||||
z-index: -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid {
|
.snowflake {
|
||||||
display: grid;
|
position: absolute;
|
||||||
grid-template-columns: repeat(6, 1fr);
|
top: -10%;
|
||||||
grid-auto-rows: 100px;
|
color: var(--accent-white);
|
||||||
gap: 5px;
|
font-size: 1.5em;
|
||||||
padding: 10px;
|
opacity: 0.8;
|
||||||
max-width: 700px;
|
animation: fall linear infinite;
|
||||||
width: 100%;
|
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Style des boîtes */
|
.snowflake:nth-child(1) {
|
||||||
.box {
|
left: 10%;
|
||||||
background: linear-gradient(145deg, #e63946, #f4a261);
|
animation-duration: 12s;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.6);
|
animation-delay: 0s;
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
|
font-size: 1.2em;
|
||||||
border-radius: 10px;
|
}
|
||||||
color: #fff;
|
.snowflake:nth-child(2) {
|
||||||
|
left: 20%;
|
||||||
|
animation-duration: 15s;
|
||||||
|
animation-delay: 2s;
|
||||||
|
font-size: 1.8em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(3) {
|
||||||
|
left: 30%;
|
||||||
|
animation-duration: 10s;
|
||||||
|
animation-delay: 4s;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(4) {
|
||||||
|
left: 40%;
|
||||||
|
animation-duration: 13s;
|
||||||
|
animation-delay: 1s;
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(5) {
|
||||||
|
left: 50%;
|
||||||
|
animation-duration: 11s;
|
||||||
|
animation-delay: 3s;
|
||||||
|
font-size: 1.3em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(6) {
|
||||||
|
left: 60%;
|
||||||
|
animation-duration: 14s;
|
||||||
|
animation-delay: 5s;
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(7) {
|
||||||
|
left: 70%;
|
||||||
|
animation-duration: 12s;
|
||||||
|
animation-delay: 2s;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(8) {
|
||||||
|
left: 80%;
|
||||||
|
animation-duration: 16s;
|
||||||
|
animation-delay: 4s;
|
||||||
|
font-size: 1.4em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(9) {
|
||||||
|
left: 90%;
|
||||||
|
animation-duration: 13s;
|
||||||
|
animation-delay: 0s;
|
||||||
|
font-size: 1.7em;
|
||||||
|
}
|
||||||
|
.snowflake:nth-child(10) {
|
||||||
|
left: 15%;
|
||||||
|
animation-duration: 11s;
|
||||||
|
animation-delay: 3s;
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fall {
|
||||||
|
0% {
|
||||||
|
top: -10%;
|
||||||
|
transform: translateX(0) rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
top: 110%;
|
||||||
|
transform: translateX(50px) rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===========================
|
||||||
|
MAIN CONTAINER
|
||||||
|
=========================== */
|
||||||
|
.background {
|
||||||
|
position: relative;
|
||||||
|
min-height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-family: 'Great Vibes', cursive;
|
flex-direction: column;
|
||||||
font-size: 20px;
|
padding: 40px 20px;
|
||||||
font-weight: bold;
|
z-index: 2;
|
||||||
transition: transform 0.2s, box-shadow 0.2s;
|
gap: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===========================
|
||||||
|
TYPOGRAPHY
|
||||||
|
=========================== */
|
||||||
|
h1 {
|
||||||
|
font-family: "Playfair Display", serif;
|
||||||
|
font-weight: 900;
|
||||||
|
font-size: clamp(2.5rem, 6vw, 5rem);
|
||||||
|
text-align: center;
|
||||||
|
background: linear-gradient(
|
||||||
|
135deg,
|
||||||
|
var(--accent-gold) 0%,
|
||||||
|
var(--accent-white) 50%,
|
||||||
|
var(--accent-gold) 100%
|
||||||
|
);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
|
||||||
|
margin-bottom: 20px;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
animation: shimmer 3s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes shimmer {
|
||||||
|
0%,
|
||||||
|
100% {
|
||||||
|
filter: brightness(1);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
filter: brightness(1.3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===========================
|
||||||
|
CALENDAR GRID
|
||||||
|
=========================== */
|
||||||
|
.grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
grid-auto-rows: 100px;
|
||||||
|
gap: 10px;
|
||||||
|
padding: 15px;
|
||||||
|
max-width: 600px;
|
||||||
|
width: 100%;
|
||||||
|
perspective: 1000px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===========================
|
||||||
|
CALENDAR BOXES
|
||||||
|
=========================== */
|
||||||
|
.box {
|
||||||
|
background: linear-gradient(
|
||||||
|
135deg,
|
||||||
|
rgba(196, 30, 58, 0.9) 0%,
|
||||||
|
rgba(139, 0, 0, 0.9) 100%
|
||||||
|
);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
border: 2px solid rgba(212, 175, 55, 0.4);
|
||||||
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
|
||||||
|
inset 0 2px 8px rgba(255, 255, 255, 0.2),
|
||||||
|
0 0 20px rgba(212, 175, 55, 0.3);
|
||||||
|
border-radius: 16px;
|
||||||
|
color: var(--text-light);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-family: "Playfair Display", serif;
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
|
||||||
|
|
||||||
/* Animation au survol */
|
|
||||||
.box:hover {
|
|
||||||
transform: scale(1.05);
|
|
||||||
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.4);
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Dispositions variées */
|
.box::before {
|
||||||
.box-1 { grid-column: 1 / span 1; grid-row: 1 / span 1; }
|
content: "";
|
||||||
.box-2 { grid-column: 2 / span 1; grid-row: 1 / span 2; }
|
position: absolute;
|
||||||
.box-3 { grid-column: 3 / span 2; grid-row: 1 / span 1; }
|
top: 0;
|
||||||
.box-4 { grid-column: 5 / span 2; grid-row: 1 / span 1; }
|
left: -100%;
|
||||||
.box-5 { grid-column: 1 / span 1; grid-row: 2 / span 1; }
|
width: 100%;
|
||||||
.box-6 { grid-column: 4 / span 1; grid-row: 2 / span 1; }
|
height: 100%;
|
||||||
.box-7 { grid-column: 6 / span 1; grid-row: 2 / span 1; }
|
background: linear-gradient(
|
||||||
.box-8 { grid-column: 1 / span 2; grid-row: 3 / span 1; }
|
90deg,
|
||||||
.box-9 { grid-column: 3 / span 1; grid-row: 2 / span 2; }
|
transparent,
|
||||||
.box-10 { grid-column: 4 / span 1; grid-row: 3 / span 2; }
|
rgba(255, 255, 255, 0.3),
|
||||||
.box-11 { grid-column: 5 / span 1; grid-row: 2 / span 2; }
|
transparent
|
||||||
.box-12 { grid-column: 6 / span 1; grid-row: 3 / span 2; }
|
);
|
||||||
.box-13 { grid-column: 1 / span 1; grid-row: 4 / span 1; }
|
transition: left 0.6s;
|
||||||
.box-14 { grid-column: 2 / span 2; grid-row: 4 / span 1; }
|
}
|
||||||
.box-15 { grid-column: 5 / span 1; grid-row: 4 / span 1; }
|
|
||||||
.box-16 { grid-column: 1 / span 2; grid-row: 5 / span 1; }
|
|
||||||
.box-17 { grid-column: 3 / span 1; grid-row: 5 / span 1; }
|
|
||||||
.box-18 { grid-column: 4 / span 1; grid-row: 5 / span 1; }
|
|
||||||
.box-19 { grid-column: 5 / span 2; grid-row: 5 / span 1; }
|
|
||||||
.box-20 { grid-column: 1 / span 1; grid-row: 6 / span 1; }
|
|
||||||
.box-21 { grid-column: 2 / span 1; grid-row: 6 / span 1; }
|
|
||||||
.box-22 { grid-column: 3 / span 2; grid-row: 6 / span 1; }
|
|
||||||
.box-23 { grid-column: 5 / span 1; grid-row: 6 / span 1; }
|
|
||||||
.box-24 { grid-column: 6 / span 1; grid-row: 6 / span 1; }
|
|
||||||
|
|
||||||
/* Styles pour la modale */
|
.box:hover::before {
|
||||||
|
left: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box::after {
|
||||||
|
content: "🎁";
|
||||||
|
position: absolute;
|
||||||
|
top: 8px;
|
||||||
|
right: 8px;
|
||||||
|
font-size: 1rem;
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box:hover {
|
||||||
|
transform: translateY(-8px) scale(1.05) rotateZ(2deg);
|
||||||
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
|
||||||
|
inset 0 4px 12px rgba(255, 255, 255, 0.3),
|
||||||
|
0 0 40px rgba(212, 175, 55, 0.6);
|
||||||
|
border-color: var(--accent-gold);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Grid positioning - Mobile-first asymmetric layout */
|
||||||
|
.box-1 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-2 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-3 {
|
||||||
|
grid-column: 3 / span 2;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-4 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-5 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 2 / span 2;
|
||||||
|
}
|
||||||
|
.box-6 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-7 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-8 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 3 / span 1;
|
||||||
|
}
|
||||||
|
.box-9 {
|
||||||
|
grid-column: 3 / span 2;
|
||||||
|
grid-row: 3 / span 1;
|
||||||
|
}
|
||||||
|
.box-10 {
|
||||||
|
grid-column: 1 / span 2;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-11 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-12 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 4 / span 2;
|
||||||
|
}
|
||||||
|
.box-13 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-14 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-15 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-16 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 6 / span 1;
|
||||||
|
}
|
||||||
|
.box-17 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 6 / span 1;
|
||||||
|
}
|
||||||
|
.box-18 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 6 / span 1;
|
||||||
|
}
|
||||||
|
.box-19 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 6 / span 1;
|
||||||
|
}
|
||||||
|
.box-20 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 7 / span 1;
|
||||||
|
}
|
||||||
|
.box-21 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 7 / span 1;
|
||||||
|
}
|
||||||
|
.box-22 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 7 / span 1;
|
||||||
|
}
|
||||||
|
.box-23 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 7 / span 1;
|
||||||
|
}
|
||||||
|
.box-24 {
|
||||||
|
grid-column: 1 / span 4;
|
||||||
|
grid-row: 8 / span 2;
|
||||||
|
font-size: 3.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===========================
|
||||||
|
MODAL STYLES
|
||||||
|
=========================== */
|
||||||
.modal {
|
.modal {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(10, 22, 40, 0.9);
|
||||||
|
backdrop-filter: blur(8px);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
|
animation: fadeIn 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content {
|
.modal-content {
|
||||||
background-color: white;
|
background: linear-gradient(
|
||||||
padding: 20px;
|
135deg,
|
||||||
border-radius: 8px;
|
rgba(26, 39, 66, 0.95) 0%,
|
||||||
|
rgba(45, 62, 95, 0.95) 100%
|
||||||
|
);
|
||||||
|
backdrop-filter: blur(20px);
|
||||||
|
padding: 40px 30px;
|
||||||
|
border-radius: 24px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 80%;
|
width: 90%;
|
||||||
max-width: 400px;
|
max-width: 500px;
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
|
||||||
|
inset 0 2px 10px rgba(255, 255, 255, 0.1),
|
||||||
|
0 0 40px rgba(212, 175, 55, 0.2);
|
||||||
|
border: 2px solid rgba(212, 175, 55, 0.3);
|
||||||
|
animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes scaleIn {
|
||||||
|
from {
|
||||||
|
transform: scale(0.8);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: scale(1);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content .close {
|
.modal-content .close {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10px;
|
top: 15px;
|
||||||
right: 10px;
|
right: 20px;
|
||||||
font-size: 1.5rem;
|
font-size: 2rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
color: var(--accent-gold);
|
||||||
|
transition: all 0.3s;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content .close:hover {
|
||||||
|
color: var(--text-light);
|
||||||
|
transform: rotate(90deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content h2 {
|
.modal-content h2 {
|
||||||
margin: 0 0 10px;
|
margin: 0 0 20px;
|
||||||
font-size: 1.5rem;
|
font-family: "Playfair Display", serif;
|
||||||
color: #333;
|
font-size: 1.8rem;
|
||||||
|
color: var(--accent-gold);
|
||||||
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content p {
|
.modal-content p {
|
||||||
font-size: 1rem;
|
font-size: 1.1rem;
|
||||||
color: #555;
|
color: var(--accent-white);
|
||||||
|
line-height: 1.6;
|
||||||
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content a {
|
.modal-content a {
|
||||||
color: #007bff;
|
color: var(--accent-gold);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border-bottom: 2px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Media query pour les écrans de petite taille */
|
.modal-content a:hover {
|
||||||
@media (max-width: 768px) {
|
color: var(--text-light);
|
||||||
.background {
|
border-bottom-color: var(--accent-gold);
|
||||||
overflow-y: auto; /* Permettre le défilement vertical */
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
/* ===========================
|
||||||
|
FOOTER
|
||||||
|
=========================== */
|
||||||
|
.footer {
|
||||||
|
margin-top: 30px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer p {
|
||||||
|
font-family: "Poppins", sans-serif;
|
||||||
|
font-size: 1rem;
|
||||||
|
color: var(--accent-white);
|
||||||
|
font-weight: 300;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer .highlight {
|
||||||
|
color: var(--accent-gold);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===========================
|
||||||
|
RESPONSIVE DESIGN
|
||||||
|
=========================== */
|
||||||
|
|
||||||
|
/* Tablettes et petits écrans */
|
||||||
|
@media (max-width: 900px) {
|
||||||
.grid {
|
.grid {
|
||||||
display: flex;
|
max-width: 550px;
|
||||||
flex-wrap: wrap;
|
grid-auto-rows: 95px;
|
||||||
justify-content: center;
|
gap: 10px;
|
||||||
gap: 10px; /* Ajustez l'espacement entre les éléments si nécessaire */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
flex: 1 1 100px; /* Ajustez la taille des boîtes pour qu'elles s'adaptent à l'écran */
|
font-size: 2.2rem;
|
||||||
max-width: 100px; /* Assurez-vous que les boîtes ne dépassent pas 100px de largeur */
|
}
|
||||||
height: 100px; /* Assurez-vous que les boîtes gardent une hauteur de 100px */
|
}
|
||||||
|
|
||||||
|
/* Smartphones en mode paysage et tablettes portrait */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.background {
|
||||||
|
padding: 30px 15px;
|
||||||
|
gap: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin-top: 7em;
|
font-size: clamp(1.8rem, 5vw, 2.5rem);
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
max-width: 100%;
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
grid-auto-rows: 85px;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
font-size: 2rem;
|
||||||
|
border-radius: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box::after {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
top: 6px;
|
||||||
|
right: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content {
|
||||||
|
padding: 35px 25px;
|
||||||
|
max-width: 90%;
|
||||||
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content h2 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content p {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer p {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snowflake {
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Smartphones portrait - optimisation principale */
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
body {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.background {
|
||||||
|
padding: 20px 10px;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: clamp(1.5rem, 6vw, 2rem);
|
||||||
|
letter-spacing: 1px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
grid-auto-rows: 80px;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 8px;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nouvelle disposition pour grille 3 colonnes sur mobile */
|
||||||
|
.box-1 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-2 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-3 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 1 / span 2;
|
||||||
|
}
|
||||||
|
.box-4 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-5 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-6 {
|
||||||
|
grid-column: 1 / span 2;
|
||||||
|
grid-row: 3 / span 1;
|
||||||
|
}
|
||||||
|
.box-7 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 3 / span 1;
|
||||||
|
}
|
||||||
|
.box-8 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-9 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 4 / span 2;
|
||||||
|
}
|
||||||
|
.box-10 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-11 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-12 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-13 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 6 / span 1;
|
||||||
|
}
|
||||||
|
.box-14 {
|
||||||
|
grid-column: 2 / span 2;
|
||||||
|
grid-row: 6 / span 1;
|
||||||
|
}
|
||||||
|
.box-15 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 7 / span 1;
|
||||||
|
}
|
||||||
|
.box-16 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 7 / span 1;
|
||||||
|
}
|
||||||
|
.box-17 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 7 / span 1;
|
||||||
|
}
|
||||||
|
.box-18 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 8 / span 1;
|
||||||
|
}
|
||||||
|
.box-19 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 8 / span 1;
|
||||||
|
}
|
||||||
|
.box-20 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 8 / span 1;
|
||||||
|
}
|
||||||
|
.box-21 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 9 / span 1;
|
||||||
|
}
|
||||||
|
.box-22 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 9 / span 1;
|
||||||
|
}
|
||||||
|
.box-23 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 9 / span 1;
|
||||||
|
}
|
||||||
|
.box-24 {
|
||||||
|
grid-column: 1 / span 3;
|
||||||
|
grid-row: 10 / span 1;
|
||||||
|
font-size: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
border-radius: 12px;
|
||||||
|
border-width: 1.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box::after {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
top: 4px;
|
||||||
|
right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box:hover {
|
||||||
|
transform: translateY(-4px) scale(1.03);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content {
|
||||||
|
padding: 25px 20px;
|
||||||
|
max-width: 92%;
|
||||||
|
border-radius: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content .close {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
top: 12px;
|
||||||
|
right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content h2 {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content p {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer p {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
padding: 0 10px;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snowflake {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Très petits écrans */
|
||||||
|
@media (max-width: 360px) {
|
||||||
|
.grid {
|
||||||
|
grid-auto-rows: 70px;
|
||||||
|
gap: 6px;
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
font-size: 1.6rem;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content p {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer p {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Écrans larges (desktop) */
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.grid {
|
||||||
|
max-width: 1000px;
|
||||||
|
grid-template-columns: repeat(6, 1fr);
|
||||||
|
grid-auto-rows: 110px;
|
||||||
|
gap: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Disposition optimisée pour grands écrans - pas de ligne vide */
|
||||||
|
.box-1 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-2 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-3 {
|
||||||
|
grid-column: 3 / span 2;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-4 {
|
||||||
|
grid-column: 5 / span 1;
|
||||||
|
grid-row: 1 / span 1;
|
||||||
|
}
|
||||||
|
.box-5 {
|
||||||
|
grid-column: 6 / span 1;
|
||||||
|
grid-row: 1 / span 2;
|
||||||
|
}
|
||||||
|
.box-6 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-7 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-8 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-9 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-10 {
|
||||||
|
grid-column: 5 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
}
|
||||||
|
.box-11 {
|
||||||
|
grid-column: 1 / span 2;
|
||||||
|
grid-row: 3 / span 1;
|
||||||
|
}
|
||||||
|
.box-12 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 3 / span 2;
|
||||||
|
}
|
||||||
|
.box-13 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 3 / span 1;
|
||||||
|
}
|
||||||
|
.box-14 {
|
||||||
|
grid-column: 5 / span 2;
|
||||||
|
grid-row: 3 / span 1;
|
||||||
|
}
|
||||||
|
.box-15 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-16 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-17 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-18 {
|
||||||
|
grid-column: 5 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-19 {
|
||||||
|
grid-column: 6 / span 1;
|
||||||
|
grid-row: 4 / span 1;
|
||||||
|
}
|
||||||
|
.box-20 {
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-21 {
|
||||||
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-22 {
|
||||||
|
grid-column: 3 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-23 {
|
||||||
|
grid-column: 4 / span 1;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
}
|
||||||
|
.box-24 {
|
||||||
|
grid-column: 5 / span 2;
|
||||||
|
grid-row: 5 / span 1;
|
||||||
|
font-size: 4.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
font-size: 2.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user