Template:MicroscopeSessionI/styles.css: Difference between revisions

From Arcis Wiki
No edit summary
No edit summary
 
Line 2: Line 2:
.floating-table {
.floating-table {
     float: right;
     float: right;
     width: 100px;
     width: 200px;
     margin: 0 0 10px 10px;
     margin: 0 0 10px 10px;
     box-sizing: border-box;
     box-sizing: border-box;

Latest revision as of 21:23, 24 October 2024

/* For larger screens (desktop) */
.floating-table {
    float: right;
    width: 200px;
    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%;
    }
}