-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (55 loc) · 1.05 KB
/
styles.css
File metadata and controls
55 lines (55 loc) · 1.05 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
#particles-js {
position: fixed;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.15;
}
.game-frame {
width: 100%;
height: 350px;
border: 2px solid #2c3e50;
border-radius: 8px;
background: #1a1a1a;
overflow: hidden;
}
.dev-info {
background: #2c3e5022;
color: #ecf0f1;
border-radius: 10px;
padding: 20px;
margin-top: 30px;
backdrop-filter: blur(5px);
}
h2 {
color: #e74c3c;
border-bottom: 2px solid;
padding-bottom: 5px;
}
.roadmap-list {
list-style-type: '➤ ';
padding-left: 1.5rem;
}
.landscape-warning {
color: #f39c12;
font-size: 0.9em;
margin-top: 5px;
}
.discord-widget {
background: #18191c;
border-radius: 8px;
padding: 10px;
margin-top: 20px;
}
.alpha-warning {
background: #8B0000;
color: #ffd700;
border: 2px solid #ffd700;
animation: pulse 2s infinite;
text-shadow: 0 0 5px rgba(255,215,0,0.5);
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}