Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -5,20 +5,21 @@
|
|
5 |
}
|
6 |
|
7 |
body {
|
|
|
8 |
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
9 |
display: flex;
|
10 |
flex-direction: column;
|
11 |
-
min-height: 100vh; /*
|
12 |
-
background-color: #e6f0fa; /* Light blue background */
|
13 |
}
|
14 |
|
15 |
header {
|
16 |
-
background: linear-gradient(90deg, #6b48ff, #00ddeb); /* Gradient */
|
17 |
padding: 1rem 1.5rem;
|
18 |
display: flex;
|
19 |
align-items: center;
|
20 |
gap: 1rem;
|
21 |
-
|
22 |
}
|
23 |
|
24 |
.header-text {
|
@@ -27,25 +28,35 @@ header {
|
|
27 |
|
28 |
h1 {
|
29 |
font-size: 16px;
|
30 |
-
margin: 0;
|
31 |
-
|
|
|
32 |
font-weight: 600;
|
33 |
}
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
iframe {
|
36 |
-
flex: 1; /* Allows iframe to expand
|
37 |
width: 100%;
|
38 |
border: none;
|
39 |
background-color: #fff;
|
40 |
-
|
|
|
41 |
}
|
42 |
|
43 |
footer {
|
44 |
padding: 0.5rem;
|
45 |
font-size: 0.7rem;
|
46 |
text-align: center;
|
47 |
-
background-color: #2d3748; /* Dark background */
|
48 |
color: #ffffff;
|
|
|
49 |
}
|
50 |
|
51 |
.creator {
|
@@ -60,7 +71,7 @@ footer {
|
|
60 |
|
61 |
.social-links a {
|
62 |
margin: 0 0.5rem;
|
63 |
-
color: #00ddeb; /* Cyan color */
|
64 |
text-decoration: none;
|
65 |
font-weight: 500;
|
66 |
}
|
@@ -75,6 +86,6 @@ footer {
|
|
75 |
|
76 |
.developers {
|
77 |
margin-top: 0.25rem;
|
78 |
-
color: #a0aec0; /* Light gray */
|
79 |
font-size: 0.65rem;
|
80 |
}
|
|
|
5 |
}
|
6 |
|
7 |
body {
|
8 |
+
padding: 0; /* Changed from 2rem to 0 to remove outer gaps */
|
9 |
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
10 |
display: flex;
|
11 |
flex-direction: column;
|
12 |
+
min-height: 100vh; /* Changed from height to min-height for full screen */
|
13 |
+
background-color: #e6f0fa; /* Light blue background to match the screenshot */
|
14 |
}
|
15 |
|
16 |
header {
|
17 |
+
background: linear-gradient(90deg, #6b48ff, #00ddeb); /* Gradient matching the screenshot */
|
18 |
padding: 1rem 1.5rem;
|
19 |
display: flex;
|
20 |
align-items: center;
|
21 |
gap: 1rem;
|
22 |
+
border-radius: 12px 12px 0 0; /* Rounded top corners */
|
23 |
}
|
24 |
|
25 |
.header-text {
|
|
|
28 |
|
29 |
h1 {
|
30 |
font-size: 16px;
|
31 |
+
margin-top: 0;
|
32 |
+
margin-bottom: 0.25rem;
|
33 |
+
color: #ffffff; /* White text to contrast with gradient */
|
34 |
font-weight: 600;
|
35 |
}
|
36 |
|
37 |
+
p {
|
38 |
+
color: rgb(107, 114, 128);
|
39 |
+
font-size: 15px;
|
40 |
+
margin-bottom: 10px;
|
41 |
+
margin-top: 5px;
|
42 |
+
}
|
43 |
+
|
44 |
iframe {
|
45 |
+
flex: 1; /* Allows iframe to expand fully */
|
46 |
width: 100%;
|
47 |
border: none;
|
48 |
background-color: #fff;
|
49 |
+
border-radius: 0 0 12px 12px; /* Rounded bottom corners */
|
50 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
|
51 |
}
|
52 |
|
53 |
footer {
|
54 |
padding: 0.5rem;
|
55 |
font-size: 0.7rem;
|
56 |
text-align: center;
|
57 |
+
background-color: #2d3748; /* Dark background to match the screenshot */
|
58 |
color: #ffffff;
|
59 |
+
border-radius: 0 0 12px 12px; /* Rounded bottom corners */
|
60 |
}
|
61 |
|
62 |
.creator {
|
|
|
71 |
|
72 |
.social-links a {
|
73 |
margin: 0 0.5rem;
|
74 |
+
color: #00ddeb; /* Cyan color to match the screenshot */
|
75 |
text-decoration: none;
|
76 |
font-weight: 500;
|
77 |
}
|
|
|
86 |
|
87 |
.developers {
|
88 |
margin-top: 0.25rem;
|
89 |
+
color: #a0aec0; /* Light gray to match the screenshot */
|
90 |
font-size: 0.65rem;
|
91 |
}
|