-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (77 loc) · 1.92 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.bingo-container {
font-family: Arial, sans-serif;
max-width: 100%;
margin: 0 auto;
padding: 10px;
box-sizing: border-box;
}
.bingo-inner-container {
text-align: center;
}
.bingo-card {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 5px;
margin-top: 20px;
width: 100%;
max-width: 400px; /* Maximale Breite für größere Bildschirme */
margin-left: auto;
margin-right: auto;
}
.bingo-cell {
aspect-ratio: 1; /* Beibehaltung des quadratischen Formats */
background-color: #f9f9f9; /* Heller Hintergrund */
border: 2px solid #4CAF50; /* Randfarbe */
border-radius: 10px; /* Abgerundete Ecken */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Schatten */
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s; /* Übergangseffekte */
padding: 5px;
word-break: break-word;
text-align: center;
hyphens: auto;
overflow: hidden;
}
.bingo-cell.selected {
background-color: #4CAF50; /* Hintergrundfarbe bei Auswahl */
color: white; /* Textfarbe bei Auswahl */
}
.bingo-popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
}
.bingo-popup-content {
background-color: white; /* Popup-Hintergrundfarbe */
padding: 20px;
border-radius: 5px;
}
.bingo-close-popup {
margin-top: 10px;
}
/* Desktop styles */
@media (min-width: 769px) {
.bingo-cell {
font-size: 18px; /* Moderate Schriftgröße für Desktop */
}
}
/* Mobile styles */
@media (max-width: 768px) {
.bingo-card {
max-width: 100%;
}
.bingo-cell {
font-size: 14px; /* Moderate Schriftgröße für mobile Geräte */
padding: 2px; /* Padding für mobile Geräte */
}
}