MediaWiki:Common.css: Difference between revisions

From Lumenpedia
Jump to navigation Jump to search
(Created page with "→‎General page background: body { background-color: #f0f8ff; →‎Light blue background: } →‎Header background: #content h1, #content h2 { background-color: #4682b4; →‎Steel blue for headers: color: white; padding: 10px; border-radius: 5px; } →‎Link colors: a { color: #1e90ff; →‎Dodger blue for links: } a:visited { color: #104e8b; →‎Darker blue for visited links: } →‎Box styling for the images: div[style*="display: inl...")
 
No edit summary
 
(35 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* General page background */
/* General page background */
body {
body {
     background-color: #f0f8ff; /* Light blue background */
     background-color: #e6f7ff; /* Very light blue background */
}
}


Line 33: Line 33:
     color: #000080; /* Navy for text */
     color: #000080; /* Navy for text */
     font-weight: bold;
     font-weight: bold;
}
/* Sidebar Styles */
#mw-panel {
    background-color: #e6f2ff !important; /* Light blue background */
    color: #003366 !important; /* Dark blue text color */
    padding: 10px;
    font-family: Arial, sans-serif;
}
#p-logo {
    background-color: #e6f2ff !important; /* Background color for the logo */
    padding: 10px;
    text-align: center;
    margin-left: -20px; /* Move the logo slightly to the left */
}
#p-logo a {
    color: #003366 !important; /* Dark blue text color */
    text-decoration: none;
}
/* Increase font size for main sidebar items */
#mw-panel .portal h5 {
    font-size: 1.8em; /* Reduce font size for section titles */
}
#mw-panel .portal ul {
    font-size: 1.3em; /* Reduce font size for list items */
    padding: 0;
}
#mw-panel .portal ul li {
    margin: 2px 0; /* Reduce spacing between items */
    background-color: #ffffff; /* White background */
    border: 1px solid #b0e0e6; /* Light blue border */
    border-radius: 5px; /* Optional: add border radius for rounded corners */
    padding: 5px;
}
#mw-panel .portal ul li a {
    color: #003366 !important; /* Dark blue text color */
    text-decoration: none;
    display: block;
}
#mw-panel .portal ul li a:hover {
    background-color: #b0e0e6 !important; /* Hover background color */
}
/* Center text within the boxes under guides */
div[style*="display: grid;"] {
    text-align: center;
}
div[style*="display: grid;"] ul {
    text-align: left; /* Align the text of list items to the left */
    padding-left: 0;
    list-style: none;
}
div[style*="display: grid;"] ul li {
    display: block;
    padding: 5px;
    margin: 5px 0;
    background-color: #ffffff; /* White background */
    border: 1px solid #b0e0e6; /* Light blue border */
    border-radius: 5px; /* Optional: add border radius for rounded corners */
}
div[style*="display: grid;"] ul li a {
    color: #003366; /* Dark blue text color */
    text-decoration: none;
}
div[style*="display: grid;"] ul li a:hover {
    background-color: #b0e0e6; /* Hover background color */
}
}

Latest revision as of 02:22, 27 June 2024

/* General page background */
body {
    background-color: #e6f7ff; /* Very light blue background */
}

/* Header background */
#content h1, #content h2 {
    background-color: #4682b4; /* Steel blue for headers */
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Link colors */
a {
    color: #1e90ff; /* Dodger blue for links */
}

a:visited {
    color: #104e8b; /* Darker blue for visited links */
}

/* Box styling for the images */
div[style*="display: inline-block; margin: 10px;"] {
    background-color: #87cefa; /* Light sky blue for boxes */
    border: 2px solid #4682b4; /* Steel blue border */
    border-radius: 10px;
    padding: 10px;
}

/* Text styling within boxes */
div[style*="display: inline-block; margin: 10px;"] p {
    color: #000080; /* Navy for text */
    font-weight: bold;
}

/* Sidebar Styles */
#mw-panel {
    background-color: #e6f2ff !important; /* Light blue background */
    color: #003366 !important; /* Dark blue text color */
    padding: 10px;
    font-family: Arial, sans-serif;
}

#p-logo {
    background-color: #e6f2ff !important; /* Background color for the logo */
    padding: 10px;
    text-align: center;
    margin-left: -20px; /* Move the logo slightly to the left */
}

#p-logo a {
    color: #003366 !important; /* Dark blue text color */
    text-decoration: none;
}

/* Increase font size for main sidebar items */
#mw-panel .portal h5 {
    font-size: 1.8em; /* Reduce font size for section titles */
}

#mw-panel .portal ul {
    font-size: 1.3em; /* Reduce font size for list items */
    padding: 0;
}

#mw-panel .portal ul li {
    margin: 2px 0; /* Reduce spacing between items */
    background-color: #ffffff; /* White background */
    border: 1px solid #b0e0e6; /* Light blue border */
    border-radius: 5px; /* Optional: add border radius for rounded corners */
    padding: 5px;
}

#mw-panel .portal ul li a {
    color: #003366 !important; /* Dark blue text color */
    text-decoration: none;
    display: block;
}

#mw-panel .portal ul li a:hover {
    background-color: #b0e0e6 !important; /* Hover background color */
}

/* Center text within the boxes under guides */
div[style*="display: grid;"] {
    text-align: center;
}

div[style*="display: grid;"] ul {
    text-align: left; /* Align the text of list items to the left */
    padding-left: 0;
    list-style: none;
}

div[style*="display: grid;"] ul li {
    display: block;
    padding: 5px;
    margin: 5px 0;
    background-color: #ffffff; /* White background */
    border: 1px solid #b0e0e6; /* Light blue border */
    border-radius: 5px; /* Optional: add border radius for rounded corners */
}

div[style*="display: grid;"] ul li a {
    color: #003366; /* Dark blue text color */
    text-decoration: none;
}

div[style*="display: grid;"] ul li a:hover {
    background-color: #b0e0e6; /* Hover background color */
}