Spaces:
Running
Running
Update index.html (#4)
Browse files- Update index.html (30cd46218158026fb69dffdcb287220e24d8c721)
- index.html +20 -1
index.html
CHANGED
|
@@ -11,7 +11,9 @@
|
|
| 11 |
color: #333;
|
| 12 |
margin: 0;
|
| 13 |
padding: 0;
|
| 14 |
-
overflow-x:
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
.timeline {
|
| 17 |
display: flex;
|
|
@@ -147,6 +149,23 @@
|
|
| 147 |
.github-link a:hover {
|
| 148 |
text-decoration: underline;
|
| 149 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 150 |
</style>
|
| 151 |
</head>
|
| 152 |
<body>
|
|
|
|
| 11 |
color: #333;
|
| 12 |
margin: 0;
|
| 13 |
padding: 0;
|
| 14 |
+
overflow-x: scroll;
|
| 15 |
+
scrollbar-width: thin;
|
| 16 |
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
| 17 |
}
|
| 18 |
.timeline {
|
| 19 |
display: flex;
|
|
|
|
| 149 |
.github-link a:hover {
|
| 150 |
text-decoration: underline;
|
| 151 |
}
|
| 152 |
+
/* Add these styles to ensure consistent scrollbar appearance across browsers */
|
| 153 |
+
body::-webkit-scrollbar {
|
| 154 |
+
height: 8px; /* Height of horizontal scrollbar */
|
| 155 |
+
}
|
| 156 |
+
|
| 157 |
+
body::-webkit-scrollbar-track {
|
| 158 |
+
background: #f1f1f1;
|
| 159 |
+
}
|
| 160 |
+
|
| 161 |
+
body::-webkit-scrollbar-thumb {
|
| 162 |
+
background: #888;
|
| 163 |
+
border-radius: 4px;
|
| 164 |
+
}
|
| 165 |
+
|
| 166 |
+
body::-webkit-scrollbar-thumb:hover {
|
| 167 |
+
background: #555;
|
| 168 |
+
}
|
| 169 |
</style>
|
| 170 |
</head>
|
| 171 |
<body>
|