-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflash.css
44 lines (39 loc) · 877 Bytes
/
flash.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
body {
margin: 0;
padding: 0;
background-color: #343a40!important;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden; /* Hide overflow to prevent scrollbars */
}
.container-game {
max-width: 800px;
max-height: 600px;
width: 100%;
height: 100%;
position: relative; /* Ensure relative positioning */
}
#container {
border: 4px solid black;
box-sizing: border-box;
width: 100%;
height: 100%;
}
ruffle-player {
display: block;
width: 100%;
height: 100%;
box-sizing: border-box;
border: 4px solid black;
max-width: 800px;
max-height: 600px;
margin: 0 auto;
}
/* Navbar styles */
.navbar {
z-index: 1000; /* Ensure the navbar appears on top of other elements */
}
/* Additional styles for the navbar */