Template:MicroscopeSessionI/styles.css

From Arcis Wiki
Revision as of 21:11, 24 October 2024 by Quantumheretic (talk | contribs) (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%; } }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* 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%;
    }
}