Spaces:
Sleeping
Sleeping
Update static/styles/style.css
Browse files- static/styles/style.css +22 -0
static/styles/style.css
CHANGED
|
@@ -1,6 +1,28 @@
|
|
| 1 |
/*
|
| 2 |
@author: idoia lerchundi
|
| 3 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
body {
|
| 5 |
background-color: #121212;
|
| 6 |
color: #ffffff;
|
|
|
|
| 1 |
/*
|
| 2 |
@author: idoia lerchundi
|
| 3 |
*/
|
| 4 |
+
#credit {
|
| 5 |
+
background-color: #f5f5f5; /* Light gray background */
|
| 6 |
+
color: #555555; /* Dark gray font for readability */
|
| 7 |
+
font-family: 'Roboto', sans-serif; /* Clean and modern sans-serif font */
|
| 8 |
+
font-size: 0.9em; /* Slightly smaller font size for subtlety */
|
| 9 |
+
padding: 10px 15px; /* Add padding for spacing */
|
| 10 |
+
border-radius: 5px; /* Rounded corners for a softer look */
|
| 11 |
+
text-align: center; /* Center-align the text */
|
| 12 |
+
margin: 20px auto; /* Add margin and center the div */
|
| 13 |
+
max-width: 800px; /* Set a maximum width for better layout control */
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
#credit a {
|
| 17 |
+
color: #0077cc; /* Subtle blue for links */
|
| 18 |
+
text-decoration: none; /* Remove underline from links */
|
| 19 |
+
font-weight: bold; /* Make links bold */
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
#credit a:hover {
|
| 23 |
+
text-decoration: underline; /* Add underline on hover */
|
| 24 |
+
color: #005fa3; /* Slightly darker blue on hover */
|
| 25 |
+
}
|
| 26 |
body {
|
| 27 |
background-color: #121212;
|
| 28 |
color: #ffffff;
|