-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (56 loc) · 1.15 KB
/
styles.css
File metadata and controls
62 lines (56 loc) · 1.15 KB
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
body {
margin: 0;
overflow: hidden;
font-family: Arial, sans-serif;
background-color: #1a1a2e;
}
/* Kontener dla sceny */
#webgl-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.5s;
}
/* Menu nałożone na scenę */
#menu-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 40px;
background-color: rgba(0, 0, 0, 0.95);
border-radius: 10px;
box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
text-align: center;
color: white;
z-index: 100;
}
#menu-overlay.hidden {
display: none;
}
h1 {
color: #00ffff;
margin-bottom: 30px;
}
button {
display: block;
width: 100%;
padding: 15px;
margin: 15px 0;
font-size: 1.1em;
font-weight: bold;
color: #00ffff;
background-color: #1a1a2e;
border: 2px solid #00ffff;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s;
}
button:hover {
background-color: #00ffff;
color: #1a1a2e;
box-shadow: 0 0 10px #00ffff;
}