1,246
edits
No edit summary Tag: Reverted |
No edit summary Tag: Manual revert |
||
Line 6: | Line 6: | ||
justify-content: space-between; | justify-content: space-between; | ||
align-items: center; | align-items: center; | ||
/*background-color: #000c5e;*/ | |||
background-color: #232E3C; | background-color: #232E3C; | ||
border-radius: 4px; | border-radius: 4px; | ||
Line 24: | Line 25: | ||
margin: 0; | margin: 0; | ||
text-align: center; | text-align: center; | ||
border: none; | border: none; /* Ensure no border is applied */ | ||
} | } | ||
.header p { | .header p { | ||
Line 87: | Line 88: | ||
padding: 10px; | padding: 10px; | ||
background-color: #ffffff; | background-color: #ffffff; | ||
/*background: linear-gradient(to bottom, #021FE2, #98CEFF);*/ | |||
border: 1px solid #dee2e6; | border: 1px solid #dee2e6; | ||
border-radius: 4px; | border-radius: 4px; | ||
Line 94: | Line 96: | ||
} | } | ||
.sticky { | .sticky { | ||
/*position: -webkit-sticky; */ | |||
position: sticky; | position: sticky; | ||
top: 10px; | top: 10px; | ||
Line 159: | Line 162: | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
justify-content: space-between; | justify-content: space-between; /* Align items with space between */ | ||
} | } | ||
.wiki-toc-list li a:hover { | .wiki-toc-list li a:hover { | ||
Line 173: | Line 176: | ||
} | } | ||
.icon-toggle.collapsed { | .icon-toggle.collapsed { | ||
transform: rotate(0deg); | transform: rotate(0deg); /* Right arrow */ | ||
} | } | ||
.icon-toggle.expanded { | .icon-toggle.expanded { | ||
transform: rotate(90deg); | transform: rotate(90deg); /* Down arrow */ | ||
} | } | ||
.current-page { | .current-page { | ||
background-color: #dddddd; | background-color: #dddddd; /* Highlight color */ | ||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
.current-section { | .current-section { | ||
background-color: #dddddd; | background-color: #dddddd; /* Highlight color for parent section */ | ||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
Line 209: | Line 212: | ||
font-family: 'Arial', sans-serif; | font-family: 'Arial', sans-serif; | ||
display: flex; | display: flex; | ||
margin-top: | margin-top: 1rem; | ||
gap: 1rem; | gap: 1rem; /* Space between sidebar and content */ | ||
align-items: stretch; | align-items: stretch; /* Ensures both child elements stretch to the same height */ | ||
} | } | ||
.main-content .content { | .main-content .content { | ||
Line 233: | Line 236: | ||
} | } | ||
.image-container { | .image-container { | ||
text-align: center; | text-align: center; /* Center the image within the div */ | ||
} | } | ||
.image-container img { | .image-container img { | ||
Line 244: | Line 247: | ||
text-align: right; | text-align: right; | ||
margin: 0; | margin: 0; | ||
/*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/ | |||
/*border: 1px solid #dee2e6;*/ | |||
/*margin-bottom: 10px;*/ | |||
} | } | ||
.preferred-partner-banner-content img { | .preferred-partner-banner-content img { | ||
Line 255: | Line 261: | ||
} | } | ||
.highlight-animated { | .highlight-animated { | ||
/*animation: colorChange 2s infinite;*/ | |||
animation: colorChange 2s 10; | animation: colorChange 2s 10; | ||
} | } | ||
@keyframes colorChange { | @keyframes colorChange { | ||
0% { | 0% { | ||
/*color: #232e3c;*/ | |||
background-color: transparent; | background-color: transparent; | ||
} | } | ||
50% { | 50% { | ||
/*color: #ffffff;*/ | |||
/*background-color: #232e3c;*/ | |||
background-color: #98CEFF; | background-color: #98CEFF; | ||
} | } | ||
100% { | 100% { | ||
/*color: #232e3c;*/ | |||
background-color: transparent; | background-color: transparent; | ||
} | } | ||
Line 273: | Line 284: | ||
display: none; | display: none; | ||
} | } | ||
} | } |