|
|
| (6 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| /* CSS placed here will be applied to all skins */ | | /* CSS placed here will be applied to all skins */ |
| /* Styling untuk sidebar yang bisa di-collapse */
| |
| #sidebar-toggle {
| |
| cursor: pointer;
| |
| padding: 5px;
| |
| text-align: right;
| |
| background-color: #f6f6f6;
| |
| border-bottom: 1px solid #ddd;
| |
| }
| |
|
| |
| #mw-panel.collapsed {
| |
| width: 40px;
| |
| overflow: hidden;
| |
| }
| |
|
| |
| #mw-panel.collapsed .portal h3,
| |
| #mw-panel.collapsed .portal .body {
| |
| display: none;
| |
| }
| |
|
| |
| #content.expanded {
| |
| margin-left: 50px;
| |
| }
| |
|
| |
| /* Transisi halus */
| |
| #mw-panel, #content {
| |
| transition: all 0.3s ease;
| |
| }
| |