Spaces:
Running
Running
Update styles.css
Browse files- styles.css +7 -11
styles.css
CHANGED
@@ -3,8 +3,9 @@
|
|
3 |
}
|
4 |
|
5 |
body {
|
6 |
-
background-color: #
|
7 |
font-family: Arial, sans-serif;
|
|
|
8 |
}
|
9 |
|
10 |
header, main {
|
@@ -20,13 +21,11 @@ header {
|
|
20 |
h1 {
|
21 |
font-size: 48px;
|
22 |
font-weight: bold;
|
23 |
-
color: #333;
|
24 |
margin-bottom: 16px;
|
25 |
}
|
26 |
|
27 |
p {
|
28 |
font-size: 18px;
|
29 |
-
color: #666;
|
30 |
}
|
31 |
|
32 |
main {
|
@@ -37,6 +36,9 @@ section {
|
|
37 |
padding: 32px;
|
38 |
border-radius: 8px;
|
39 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
40 |
}
|
41 |
|
42 |
.leaderboard ul {
|
@@ -62,13 +64,12 @@ section {
|
|
62 |
.leaderboard h3 {
|
63 |
font-size: 24px;
|
64 |
font-weight: bold;
|
65 |
-
color: #333;
|
66 |
margin-bottom: 4px;
|
67 |
}
|
68 |
|
69 |
.leaderboard p {
|
70 |
font-size: 16px;
|
71 |
-
|
72 |
}
|
73 |
|
74 |
.leaderboard a {
|
@@ -83,33 +84,28 @@ section {
|
|
83 |
.testimonials h2 {
|
84 |
font-size: 28px;
|
85 |
font-weight: bold;
|
86 |
-
color: #333;
|
87 |
margin-bottom: 24px;
|
88 |
}
|
89 |
|
90 |
.testimonials blockquote {
|
91 |
padding: 24px;
|
92 |
border-radius: 8px;
|
93 |
-
|
94 |
-
background-color: #fff;
|
95 |
}
|
96 |
|
97 |
.testimonials p {
|
98 |
font-size: 18px;
|
99 |
-
color: #666;
|
100 |
margin-bottom: 8px;
|
101 |
}
|
102 |
|
103 |
.testimonials cite {
|
104 |
font-size: 14px;
|
105 |
-
color: #999;
|
106 |
font-style: italic;
|
107 |
}
|
108 |
|
109 |
.contact h2 {
|
110 |
font-size: 28px;
|
111 |
font-weight: bold;
|
112 |
-
color: #333;
|
113 |
margin-bottom: 24px;
|
114 |
}
|
115 |
|
|
|
3 |
}
|
4 |
|
5 |
body {
|
6 |
+
background-color: #111827;
|
7 |
font-family: Arial, sans-serif;
|
8 |
+
color: white;
|
9 |
}
|
10 |
|
11 |
header, main {
|
|
|
21 |
h1 {
|
22 |
font-size: 48px;
|
23 |
font-weight: bold;
|
|
|
24 |
margin-bottom: 16px;
|
25 |
}
|
26 |
|
27 |
p {
|
28 |
font-size: 18px;
|
|
|
29 |
}
|
30 |
|
31 |
main {
|
|
|
36 |
padding: 32px;
|
37 |
border-radius: 8px;
|
38 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
39 |
+
background-color: white;
|
40 |
+
position: relative;
|
41 |
+
overflow: hidden;
|
42 |
}
|
43 |
|
44 |
.leaderboard ul {
|
|
|
64 |
.leaderboard h3 {
|
65 |
font-size: 24px;
|
66 |
font-weight: bold;
|
|
|
67 |
margin-bottom: 4px;
|
68 |
}
|
69 |
|
70 |
.leaderboard p {
|
71 |
font-size: 16px;
|
72 |
+
margin-bottom: 8px;
|
73 |
}
|
74 |
|
75 |
.leaderboard a {
|
|
|
84 |
.testimonials h2 {
|
85 |
font-size: 28px;
|
86 |
font-weight: bold;
|
|
|
87 |
margin-bottom: 24px;
|
88 |
}
|
89 |
|
90 |
.testimonials blockquote {
|
91 |
padding: 24px;
|
92 |
border-radius: 8px;
|
93 |
+
background-color: #f5f5f5;
|
|
|
94 |
}
|
95 |
|
96 |
.testimonials p {
|
97 |
font-size: 18px;
|
|
|
98 |
margin-bottom: 8px;
|
99 |
}
|
100 |
|
101 |
.testimonials cite {
|
102 |
font-size: 14px;
|
|
|
103 |
font-style: italic;
|
104 |
}
|
105 |
|
106 |
.contact h2 {
|
107 |
font-size: 28px;
|
108 |
font-weight: bold;
|
|
|
109 |
margin-bottom: 24px;
|
110 |
}
|
111 |
|