Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
t0-0
commited on
Commit
·
61f2974
1
Parent(s):
ca2dd4e
Add support for fixed model name on mobile devices
Browse files
style.css
CHANGED
|
@@ -44,19 +44,23 @@ table th:first-child {
|
|
| 44 |
white-space: nowrap;
|
| 45 |
}
|
| 46 |
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
| 52 |
}
|
| 53 |
|
|
|
|
| 54 |
@media (prefers-color-scheme: light) {
|
| 55 |
table td:nth-child(2) {
|
| 56 |
background-color: rgba(255,255,255,0.9) !important;
|
| 57 |
}
|
| 58 |
}
|
| 59 |
|
|
|
|
| 60 |
@media (prefers-color-scheme: dark) {
|
| 61 |
table td:nth-child(2) {
|
| 62 |
background-color: rgba(52,65,86,0.9) !important;
|
|
|
|
| 44 |
white-space: nowrap;
|
| 45 |
}
|
| 46 |
|
| 47 |
+
@media(min-width: 700px){
|
| 48 |
+
table td:nth-child(2) {
|
| 49 |
+
left: 0;
|
| 50 |
+
z-index: 1;
|
| 51 |
+
position: sticky;
|
| 52 |
+
border-right: solid rgba(0,0,0,0.1) !important;
|
| 53 |
+
}
|
| 54 |
}
|
| 55 |
|
| 56 |
+
@media(min-width: 700px),
|
| 57 |
@media (prefers-color-scheme: light) {
|
| 58 |
table td:nth-child(2) {
|
| 59 |
background-color: rgba(255,255,255,0.9) !important;
|
| 60 |
}
|
| 61 |
}
|
| 62 |
|
| 63 |
+
@media(min-width: 700px),
|
| 64 |
@media (prefers-color-scheme: dark) {
|
| 65 |
table td:nth-child(2) {
|
| 66 |
background-color: rgba(52,65,86,0.9) !important;
|