initial commit
Browse files- assets/style.css +15 -18
assets/style.css
CHANGED
@@ -1,30 +1,28 @@
|
|
1 |
.ef3psqc12{
|
2 |
-
background-color: #
|
3 |
-
color:
|
4 |
-
padding: 10px 15px;
|
5 |
-
text-align: center;
|
6 |
text-decoration: none;
|
7 |
display: inline-block;
|
8 |
-
font-size: 18px;
|
9 |
-
border-radius: 8px;
|
10 |
-
margin: 8px 4px;
|
11 |
cursor: pointer;
|
12 |
-
transition: background-color 0.3s ease;
|
13 |
}
|
14 |
|
15 |
.ef3psqc12:hover {
|
16 |
-
background-color: #
|
17 |
-
color:
|
18 |
}
|
19 |
|
20 |
-
|
21 |
-
|
22 |
.e1nzilvr5 p{
|
23 |
font-family: Cambria, Georgia, serif;
|
24 |
font-size: 18px;
|
25 |
font-weight: 700;
|
26 |
line-height: 26.4px;
|
27 |
-
color:
|
28 |
}
|
29 |
|
30 |
.e1y5xkzn3{
|
@@ -34,15 +32,14 @@
|
|
34 |
font-variant: normal;
|
35 |
font-weight: 700;
|
36 |
line-height: 26.4px;
|
|
|
37 |
}
|
38 |
|
39 |
-
|
40 |
-
|
41 |
.e1nzilvr1{
|
42 |
-
color: #
|
43 |
font-family: Cambria, Georgia, serif;
|
44 |
}
|
45 |
|
46 |
.ea3mdgi5{
|
47 |
-
background-color: #
|
48 |
-
}
|
|
|
1 |
.ef3psqc12{
|
2 |
+
background-color: #f0f0f5; /* Apple-inspired light gray background */
|
3 |
+
color: #000000; /* Black text */
|
4 |
+
padding: 10px 15px;
|
5 |
+
text-align: center;
|
6 |
text-decoration: none;
|
7 |
display: inline-block;
|
8 |
+
font-size: 18px;
|
9 |
+
border-radius: 8px;
|
10 |
+
margin: 8px 4px;
|
11 |
cursor: pointer;
|
12 |
+
transition: background-color 0.3s ease;
|
13 |
}
|
14 |
|
15 |
.ef3psqc12:hover {
|
16 |
+
background-color: #d6d6d6; /* Slightly darker gray on hover */
|
17 |
+
color: #000000; /* Black text on hover */
|
18 |
}
|
19 |
|
|
|
|
|
20 |
.e1nzilvr5 p{
|
21 |
font-family: Cambria, Georgia, serif;
|
22 |
font-size: 18px;
|
23 |
font-weight: 700;
|
24 |
line-height: 26.4px;
|
25 |
+
color: #000000; /* Black font color */
|
26 |
}
|
27 |
|
28 |
.e1y5xkzn3{
|
|
|
32 |
font-variant: normal;
|
33 |
font-weight: 700;
|
34 |
line-height: 26.4px;
|
35 |
+
color: #000000; /* Black font color */
|
36 |
}
|
37 |
|
|
|
|
|
38 |
.e1nzilvr1{
|
39 |
+
color: #000000; /* Black font color */
|
40 |
font-family: Cambria, Georgia, serif;
|
41 |
}
|
42 |
|
43 |
.ea3mdgi5{
|
44 |
+
background-color: #f0f0f5; /* Apple-inspired light gray background */
|
45 |
+
}
|