|
|
Line 1: |
Line 1: |
| /* new style changes */ | | /* new style changes */ |
| /* Fix for the Edit, Edit Source, and View History buttons */
| |
| #ca-edit a, #ca-ve-edit a, #ca-history a {
| |
| background-color: transparent !important;
| |
| color: #7c25b8 !important; /* Or any other color that matches your theme */
| |
| text-shadow: none !important;
| |
| padding: 5px 10px;
| |
| border-radius: 5px;
| |
| }
| |
|
| |
| #ca-edit a:hover, #ca-ve-edit a:hover, #ca-history a:hover {
| |
| background-color: #e3d4f3 !important;
| |
| color: #5a1d8a !important;
| |
| }
| |
|
| |
| /* Headings */ | | /* Headings */ |
| h1, h2, h3, h4, h5, h6 { | | h1, h2, h3, h4, h5, h6 { |
Line 127: |
Line 113: |
| text-align: center; | | text-align: center; |
| font-size: 14px; | | font-size: 14px; |
| }
| |
|
| |
| /* Implementing JavaScript for Interactivity */
| |
| .collapsible {
| |
| cursor: pointer;
| |
| padding: 10px;
| |
| background-color: #7c25b8;
| |
| color: white;
| |
| border: none;
| |
| text-align: left;
| |
| outline: none;
| |
| font-size: 15px;
| |
| }
| |
|
| |
| .collapsible:after {
| |
| content: '\002B';
| |
| font-weight: bold;
| |
| float: right;
| |
| }
| |
|
| |
| .collapsible.collapsed:after {
| |
| content: "\2212";
| |
| }
| |
|
| |
| .collapsible-content {
| |
| display: none;
| |
| padding: 0 18px;
| |
| overflow: hidden;
| |
| background-color: #f9f9f9;
| |
| } | | } |
|
| |
|