Create style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,52 @@
|
|
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 |
}
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Basic Reset & Body Style */
|
2 |
+
* {
|
3 |
+
margin: 0;
|
4 |
+
padding: 0;
|
5 |
+
box-sizing: border-box;
|
6 |
}
|
7 |
|
8 |
+
body {
|
9 |
+
background-color: #000011; /* Dark space blue */
|
10 |
+
color: #f0f0f0;
|
11 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
12 |
+
overflow-x: hidden; /* Prevent horizontal scrollbar */
|
13 |
}
|
14 |
|
15 |
+
/* Three.js Canvas */
|
16 |
+
#bg {
|
17 |
+
position: fixed;
|
18 |
+
top: 0;
|
19 |
+
left: 0;
|
20 |
+
z-index: -1; /* Place canvas behind all other content */
|
21 |
}
|
22 |
|
23 |
+
/* Content Centering */
|
24 |
+
.content-wrapper {
|
25 |
+
display: flex;
|
26 |
+
justify-content: center;
|
27 |
+
align-items: center;
|
28 |
+
min-height: 100vh;
|
29 |
+
padding: 2rem;
|
30 |
}
|
31 |
|
32 |
+
/* Iframe Container Styling */
|
33 |
+
.iframe-container {
|
34 |
+
width: 90%;
|
35 |
+
max-width: 1200px;
|
36 |
+
background: rgba(0, 20, 30, 0.6); /* Semi-transparent background */
|
37 |
+
border: 1.5px solid #00ffff;
|
38 |
+
border-radius: 10px;
|
39 |
+
padding: 10px;
|
40 |
+
box-shadow:
|
41 |
+
0 0 10px rgba(0, 255, 255, 0.5),
|
42 |
+
0 0 25px rgba(0, 255, 255, 0.4),
|
43 |
+
0 0 50px rgba(0, 255, 255, 0.3),
|
44 |
+
inset 0 0 10px rgba(0, 255, 255, 0.3); /* Glowing effect */
|
45 |
+
backdrop-filter: blur(3px); /* Frosted glass effect */
|
46 |
+
-webkit-backdrop-filter: blur(3px);
|
47 |
}
|
48 |
+
|
49 |
+
iframe {
|
50 |
+
display: block;
|
51 |
+
border-radius: 5px; /* Match container's rounded corners */
|
52 |
+
}
|