Template:MicroscopeSessionI/styles.css: Difference between revisions
From Arcis Wiki
Created page with "→Template:TableTemplate/styles.css: →For larger screens (desktop): .floating-table { float: right; width: 300px; →Adjust this value as needed: margin: 0 0 10px 10px; box-sizing: border-box; } →For smaller screens (mobile): @media screen and (max-width: 768px) { .floating-table { float: none; margin: 10px auto; width: 100%; } }" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* For larger screens (desktop) */ | /* For larger screens (desktop) */ | ||
.floating-table { | .floating-table { | ||
Revision as of 21:13, 24 October 2024
/* For larger screens (desktop) */
.floating-table {
float: right;
width: 300px; /* Adjust this value as needed */
margin: 0 0 10px 10px;
box-sizing: border-box;
}
/* For smaller screens (mobile) */
@media screen and (max-width: 768px) {
.floating-table {
float: none;
margin: 10px auto;
width: 100%;
}
}