rajkhanke commited on
Commit
0d36b1d
·
verified ·
1 Parent(s): 94a1e03

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +30 -36
index.html CHANGED
@@ -7,51 +7,45 @@
7
  <style>
8
  /* Basic styles for the body */
9
  body {
10
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A clean, modern font */
11
  margin: 0;
12
  padding: 0;
13
- /* Solid sky blue background */
14
- background-color: #add8e6; /* A common light blue/skyblue color */
15
- color: #333; /* Dark grey for text */
16
- min-height: 100vh; /* Ensure background covers the full viewport height */
17
- box-sizing: border-box; /* Include padding/border in total element size */
18
  }
19
 
20
- /* Container to center content and add padding */
21
  .container {
22
- max-width: 1200px; /* Maximum width of the content area */
23
- margin: 20px auto; /* Center the container and add space above/below */
24
- padding: 0 20px; /* Add padding on the sides */
25
- text-align: center; /* Center the heading */
26
  }
27
 
28
  /* Styling for the main heading */
29
  h2 {
30
- color: #00796b; /* Darker teal/aqua color */
31
- margin-top: 0;
32
- margin-bottom: 20px;
33
- text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle text shadow */
 
34
  }
35
 
36
- /* Styling for the iframe */
37
- /* Styling for the iframe - Full Width Expansion */
38
- /* Styling for the iframe - Almost Full Width with Minimal Spacing */
39
- iframe {
40
- display: block;
41
- width: calc(100vw - 20px); /* Full viewport width minus 20px total */
42
- height: 90vh; /* 90% of viewport height */
43
- margin-left: auto;
44
- margin-right: auto;
45
- border: 2px solid #00796b;
46
- box-shadow: 0 6px 12px rgba(0,0,0,0.25);
47
- border-radius: 8px;
48
- overflow: hidden;
49
- background-color: #fff;
50
- box-sizing: border-box;
51
- }
52
-
53
-
54
-
55
 
56
  /* Styling for fallback text (if iframe is not supported) */
57
  .fallback-message {
@@ -61,7 +55,7 @@ iframe {
61
  }
62
 
63
  .fallback-message a {
64
- color: #00796b; /* Match heading color */
65
  text-decoration: none;
66
  }
67
 
@@ -89,4 +83,4 @@ iframe {
89
  </div>
90
 
91
  </body>
92
- </html>
 
7
  <style>
8
  /* Basic styles for the body */
9
  body {
10
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
11
  margin: 0;
12
  padding: 0;
13
+ background-color: #add8e6;
14
+ color: #333;
15
+ min-height: 100vh;
16
+ box-sizing: border-box;
 
17
  }
18
 
19
+ /* Container for centering content */
20
  .container {
21
+ max-width: 100vw; /* Full viewport width */
22
+ margin: 0 auto; /* Center the container */
23
+ padding: 0; /* No extra padding on sides */
24
+ text-align: center;
25
  }
26
 
27
  /* Styling for the main heading */
28
  h2 {
29
+ color: #00796b;
30
+ margin: 10px 0;
31
+ text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
32
+ background-color: #e0f2f1; /* Light teal background for the heading */
33
+ padding: 10px 0; /* Space above and below the heading */
34
  }
35
 
36
+ /* Styling for the iframe with minimal spacing */
37
+ iframe {
38
+ display: block;
39
+ width: calc(100vw - 10px); /* Almost full width, 5px spacing on each side */
40
+ height: 92vh; /* Slightly taller height */
41
+ margin: 0 auto;
42
+ border: 2px solid #00796b;
43
+ box-shadow: 0 6px 12px rgba(0,0,0,0.25);
44
+ border-radius: 8px;
45
+ overflow: hidden;
46
+ background-color: #fff;
47
+ box-sizing: border-box;
48
+ }
 
 
 
 
 
 
49
 
50
  /* Styling for fallback text (if iframe is not supported) */
51
  .fallback-message {
 
55
  }
56
 
57
  .fallback-message a {
58
+ color: #00796b;
59
  text-decoration: none;
60
  }
61
 
 
83
  </div>
84
 
85
  </body>
86
+ </html>