MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
font-weight: bold; | font-weight: bold; | ||
cursor: pointer; | cursor: pointer; | ||
} | |||
/* Sidebar styling */ | |||
.adaris-sidebar { | |||
float: right; /* Position sidebar to the right */ | |||
width: 300px; /* Adjust width as needed */ | |||
margin-left: 20px; /* Add spacing between sidebar and main content */ | |||
border: 1px solid #eee; /* Add a subtle border */ | |||
padding: 10px; /* Add padding inside the sidebar */ | |||
} | |||
.adaris-sidebar h3 { /* Style for sidebar headings */ | |||
font-size: 1.2em; | |||
margin-bottom: 5px; | |||
} | |||
.adaris-sidebar ul { | |||
list-style: none; /* Remove bullet points from list */ | |||
padding: 0; | |||
} | } |
Revision as of 20:12, 31 August 2024
/* Style for the "Explore More" links */
.explore-more {
font-style: italic;
margin-top: 10px; /* Add some spacing above the links */
border-top: 1px solid #ccc; /* Add a subtle divider line */
padding-top: 10px; /* Add some padding below the divider */
}
/* Style for the collapsible sections */
.mw-collapsible {
border: 1px solid #eee; /* Add a subtle border around each section */
margin-bottom: 15px; /* Add spacing between sections */
padding: 10px; /* Add padding inside each section */
}
.mw-collapsible-toggle { /* Style for the section headers */
font-weight: bold;
cursor: pointer;
}
/* Sidebar styling */
.adaris-sidebar {
float: right; /* Position sidebar to the right */
width: 300px; /* Adjust width as needed */
margin-left: 20px; /* Add spacing between sidebar and main content */
border: 1px solid #eee; /* Add a subtle border */
padding: 10px; /* Add padding inside the sidebar */
}
.adaris-sidebar h3 { /* Style for sidebar headings */
font-size: 1.2em;
margin-bottom: 5px;
}
.adaris-sidebar ul {
list-style: none; /* Remove bullet points from list */
padding: 0;
}