Difference between revisions of "MediaWiki:Common.css"

From ICANNWiki
Jump to navigation Jump to search
Line 5: Line 5:
 
/* Box at the top of the main page layout */
 
/* Box at the top of the main page layout */
 
.icannwiki-top-box {
 
.icannwiki-top-box {
     background-color: #61a376;
+
     background-color: #62a386;
 
     border-radius: 5px;
 
     border-radius: 5px;
 
     margin-bottom: 20px;
 
     margin-bottom: 20px;
Line 38: Line 38:
  
 
.icannwiki-invisible-bullet a {
 
.icannwiki-invisible-bullet a {
     color: #cef0d8;
+
     color: #dff4e4;
 
     text-decoration: none;
 
     text-decoration: none;
 
}
 
}
Line 44: Line 44:
 
/* Header for featured article, news, about us, and so on */
 
/* Header for featured article, news, about us, and so on */
 
.icannwiki-section-header {
 
.icannwiki-section-header {
     background: #61A376;
+
     background: #62a386;
 
     font-family: sans-serif;
 
     font-family: sans-serif;
 
     font-weight: bold;
 
     font-weight: bold;
 
     text-align: left;
 
     text-align: left;
     color: #cef0d8;
+
     color: #dff4e4;
 
     height: 1.5em;
 
     height: 1.5em;
 
     margin: .2em 0 .2em 0;
 
     margin: .2em 0 .2em 0;

Revision as of 01:03, 6 April 2024

/* CSS placed here will be applied to all skins */

/* Legacy code moved to MediaWiki:Common.css/Legacy

/* Box at the top of the main page layout */
.icannwiki-top-box {
    background-color: #62a386;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px; /* Adjust padding as needed */
    display: flex; /* Use Flexbox */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    align-items: flex-start; /* Align items to the start of the flex container */
}

/* List contained within the top box */
.icannwiki-invisible-bullet ul {
    list-style-type: none;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Ensure the ul takes full width */
    display: flex; /* Use Flexbox */
    flex-wrap: wrap; /* Allow list items to wrap */
    justify-content: space-between; /* Adjusted for spacing */
}

.icannwiki-invisible-bullet ul li {
    list-style-type: none;
    list-style: none;
    margin-right: 2%; /* Adjust if necessary for fine-tuning */
    margin-bottom: 10px; /* Vertical space between lines */
    flex: 1; /* Flex items will grow to fill the space */
    min-width: 120px; /* Minimum width of each item */
    font-size: 120%;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.icannwiki-invisible-bullet a {
    color: #dff4e4;
    text-decoration: none;
}

/* Header for featured article, news, about us, and so on */
.icannwiki-section-header {
    background: #62a386;
    font-family: sans-serif;
    font-weight: bold;
    text-align: left;
    color: #dff4e4;
    height: 1.5em;
    margin: .2em 0 .2em 0;
    padding: 1em;
    border-radius: 5px;
}

/* Separator */
.icannwiki-clearfix {
    clear: both;
}

/* Main page content box: left */
.icannwiki-half-width-left {
    width: 49.5%;
    float: left;
}

/* Main page content box: right */
.icannwiki-half-width-right {
    width: 49.5%;
    float: right;
}

/* Font with darker shade of white */
.icannwiki-text-white {
    color: #F2EFEA;
}

/* Larger font */
.icannwiki-font-large {
    font-size: 150%;
}