Jump to content

MediaWiki:Mobile.css: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(22 intermediate revisions by 2 users not shown)
Line 389: Line 389:
.no-prev, .no-next {
.no-prev, .no-next {
     display: none;
     display: none;
}
/* 20231128 */
.nav-container-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin: 1em 0;
}
.nav-container-flex p {
    margin: 0;
}
}


Line 651: Line 663:
}
}


.page-Main_Page .eric-profile h2.in-block {
.page-Main_Page .eric-profile h2.in-block,
.page-Main_Page .community-section h2.in-block {
     margin-bottom: 0.5em;
     margin-bottom: 0.5em;
     padding: 0;
     padding: 0;
    border-bottom: 3px solid #c7c7c7;
}
}


.page-Main_Page h4.in-block {
.page-Main_Page h4.in-block {
     padding-bottom: 0.4em;
     padding-bottom: 0.4em;
}
.box-header h4, .box-header h3 {
    padding-bottom: 0.1em;
}
/* Grid Templates */
.grid-3-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
}
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}
@media screen and (max-width: 800px) {
    .grid-3-col,
    .grid-2-col {
        grid-template-columns: 1fr;
    }
}
/* CardBook */
.card-book {
    display: grid;
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "img info"
        "followon followon";
    gap: 0.75em;
    padding: 0.75em;
    background: #e9e9e9;
    border-radius: 6px;
}
.card-book-img {
    grid-area: img;
}
.card-book-img img {
    border-radius: 3px;
}
.card-book-info {
    grid-area: info;
}
.card-book-title p,
.card-book-authors p {
    line-height: 1.15;
}
.card-book-title p {
    margin: 0 0 0.25em;
}
.card-book-title a {
    font-weight: bold;
}
.card-book-authors p,
.card-book-description p {
    margin: 0 0 0.5em;
}
.card-book-authors {
    font-size: 0.8em;
}
.card-book-description {
    line-height: 1.3;
}
.card-book-followon {
    grid-area: followon;
}
.card-book-followon-heading {
    color: #393939;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 0.5em;
}
ul.card-book-followon-list {
    margin: 0;
    padding: 0;
}
.card-book-followon-list-item {
    list-style: none;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.75em;
    width: 100%;
}
.card-book-followon-list-item:not(:last-child) {
    margin: 0 0 0.75em;
}
.card-book-followon-img {
    border-radius: 3px;
}
.card-book-followon-title p {
    margin: 0;
}
/*******************************/
/*  9. Tweet Styling (Mobile)  */
/*  Overrides only — 2025-09-13 */
/*******************************/
/* Commented out 2025-09-14 and replaced with below
.tweet {
    border: 1px solid #c7c7c7;
    border-radius: 12px;
    font-family: system-ui, sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem;
    max-width: 100%;
}
.tweet-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.tweet-header-image img {
    border-radius: 100%;
    width: 40px !important;
    height: 40px !important;
}
.tweet-username {
    font-size: 0.8rem;
    color: #777 !important;
}
.tweet-timestamp {
    font-size: 0.8rem;
    color: #777 !important;
}
.tweet-display-name a.external {
    font-size: 1rem;
    color: #000 !important;
    font-weight: bold;
    text-decoration: none;
}
*/
.tweet {
    border-radius: 12px;
    border: 1px solid #c7c7c7;
    padding: 0.75rem;
    max-width: 560px;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}
.tweet-header {
    display: flex;
    gap: 0.75rem;
    margin: 0 0 0.5rem;
}
.tweet-header-image p {
    margin: 0;
}
.tweet > .tweet-header .tweet-header-image img {
    border-radius: 100%;
    max-width: 48px!important;
    width: 48px !important;
    height: 48px !important;
}
.tweet-header-name {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}
.tweet-header-name a.external {
    background-image: none;
}
.tweet-timestamp {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}
.tweet-username {
    color: #555 !important;
    font-size: 0.85rem;
    line-height: 1.2;
    margin-top: 0.15rem;
}
.tweet-display-name a.external {
    color: #000 !important;
    font-weight: bold;
    text-decoration: none;
}
.tweet-display-name:hover a.external {
    text-decoration: underline;
}
/* Keep the quoted card look but without changing fonts */
.tweet-quote {
    padding-top: 0.75rem;
}
.tweet-quote .tweet {
    border-radius: 10px;
    background-color: #f9f9f9;
}
.tweet-quote .tweet-header-image img {
    width: 42px !important;
    height: 42px !important;
}
/* Tweet media */
.tweet-media {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.tweet-media.count-1 { grid-template-columns: 1fr; }
.tweet-media.count-2 { grid-template-columns: 1fr 1fr; }
.tweet-media.count-3 { grid-template-columns: 1fr 1fr; }
.tweet-media.count-4 { grid-template-columns: 1fr 1fr; }
/* Make the first image span full width in a 3-image layout (2x1 + 1x2) */
.tweet-media.count-3 > :first-child { grid-column: 1 / -1; }
/* Ensure images fill their grid cell */
.tweet-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}
/* Tweet Thread */
.tweet-thread > .tweet {
    display: grid;
    grid-template-areas: "header date" "content content" "media media" "quote quote";
    grid-template-columns: min-content 1fr;
    margin: 0 0 0.25em;
    padding: 0;
    border: none;
}
.tweet-thread > .tweet > .tweet-header {
    grid-area: header;
    margin: 0 0 0.25rem;
}
.tweet-thread > .tweet > .tweet-content {
    grid-area: content;
    margin-left: 23px;
    padding-left: 22px;
    border-left: 2px solid #ced9de;
}
.tweet-thread > .tweet > .tweet-content p:first-child {
    margin: 0 0 0.5em;
}
.tweet-thread > .tweet > .tweet-timestamp {
    grid-area: date;
    align-items: start;
    margin: 0;
}
.tweet-thread > .tweet > .tweet-media {
    grid-area: media;
    margin-left: 23px;
    margin-top: 0;
    padding-left: 22px;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    border-left: 2px solid #ced9de;
}
.tweet-thread > .tweet > .tweet-quote {
    grid-area: quote;
    margin-left: 23px;
    padding-left: 22px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-left: 2px solid #ced9de;
}
}