Update index.html
Browse files- 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;
|
11 |
margin: 0;
|
12 |
padding: 0;
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
box-sizing: border-box; /* Include padding/border in total element size */
|
18 |
}
|
19 |
|
20 |
-
/* Container
|
21 |
.container {
|
22 |
-
max-width:
|
23 |
-
margin:
|
24 |
-
padding: 0
|
25 |
-
text-align: center;
|
26 |
}
|
27 |
|
28 |
/* Styling for the main heading */
|
29 |
h2 {
|
30 |
-
color: #00796b;
|
31 |
-
margin
|
32 |
-
|
33 |
-
|
|
|
34 |
}
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
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;
|
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>
|