awacke1 commited on
Commit
7d15772
·
verified ·
1 Parent(s): 058f01c

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +43 -19
style.css CHANGED
@@ -1,28 +1,52 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
 
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }