Update style.css
Browse files
style.css
CHANGED
|
@@ -225,6 +225,22 @@ footer {
|
|
| 225 |
min-width: 80px;
|
| 226 |
}
|
| 227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 228 |
/* ... add other mobile-specific styles ... */
|
| 229 |
}
|
| 230 |
|
|
|
|
| 225 |
min-width: 80px;
|
| 226 |
}
|
| 227 |
|
| 228 |
+
/* This will hide all list items */
|
| 229 |
+
div.tab-nav button {
|
| 230 |
+
display: none !important;
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
/* This will show only the first list item */
|
| 234 |
+
div.tab-nav button:first-child {
|
| 235 |
+
display: block !important;
|
| 236 |
+
}
|
| 237 |
+
|
| 238 |
+
/* This will show only the first list item */
|
| 239 |
+
div.tab-nav button:nth-child(2) {
|
| 240 |
+
display: block !important;
|
| 241 |
+
}
|
| 242 |
+
|
| 243 |
+
|
| 244 |
/* ... add other mobile-specific styles ... */
|
| 245 |
}
|
| 246 |
|