Spaces:
Sleeping
Sleeping
Upload styles.css
Browse files- styles.css +29 -0
styles.css
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#main-container {
|
2 |
+
max-width: 900px;
|
3 |
+
margin: 0 auto;
|
4 |
+
}
|
5 |
+
|
6 |
+
p a {
|
7 |
+
color: #57a1a9; /* Same as button background color */
|
8 |
+
font-weight: bold; /* Makes the link text bold */
|
9 |
+
}
|
10 |
+
|
11 |
+
/* Hover state */
|
12 |
+
p a:hover {
|
13 |
+
color: #345e63; /* Same as hover background color for the button */
|
14 |
+
text-decoration: underline; /* Underlines the link on hover */
|
15 |
+
}
|
16 |
+
|
17 |
+
|
18 |
+
.custom-button {
|
19 |
+
background-color: #57a1a9; /* Green background */
|
20 |
+
color: white; /* White text */
|
21 |
+
padding: 10px 20px; /* Padding */
|
22 |
+
border: none; /* No border */
|
23 |
+
cursor: pointer; /* Pointer cursor */
|
24 |
+
font-size: 16px; /* Font size */
|
25 |
+
}
|
26 |
+
.custom-button:hover {
|
27 |
+
background-color: #345e63;
|
28 |
+
}
|
29 |
+
|