MediaWiki:Common.css: Difference between revisions

From Ragnarok Plus Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
.ragnarok-table td, .ragnarok-table th {
.ragnarok-table {
     border: 1px
    border: 1px solid #0f172b;
     border-color: #0f172b
    border-collapse: collapse;
    width: 100%;
}
 
.ragnarok-table th {
     border: 1px solid #0f172b;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}
 
.ragnarok-table td {
     border: 1px solid #0f172b;
     padding: 10px;
     padding: 10px;
     text-align: left;
     text-align: left;
     vertical-align: center;
     vertical-align: middle;
}
 
.ragnarok-table .left  { text-align: left; }
.ragnarok-table .right  { text-align: right; }
.ragnarok-table .center { text-align: center; }
 
.green-bold {
    color: #02783d;
    font-weight: bold;
}
}

Revision as of 12:53, 25 September 2025

/* CSS placed here will be applied to all skins */
.ragnarok-table {
    border: 1px solid #0f172b;
    border-collapse: collapse; 
    width: 100%;
}

.ragnarok-table th {
    border: 1px solid #0f172b;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

.ragnarok-table td {
    border: 1px solid #0f172b;
    padding: 10px;
    text-align: left;
    vertical-align: middle;
}

.ragnarok-table .left   { text-align: left; }
.ragnarok-table .right  { text-align: right; }
.ragnarok-table .center { text-align: center; }

.green-bold {
    color: #02783d;
    font-weight: bold;
}