MediaWiki:Mobile.css: Difference between revisions

From Roses, Tulips, & Liberty
Content added Content deleted
(minor changes to color and added blurry text class for mobile)
 
m (fix bug on mobile where title can't be seen due to recent changes)
 
(One intermediate revision by the same user not shown)
Line 18: Line 18:
/* 2023-10-10 Make the design more aligned with desktop site*/
/* 2023-10-10 Make the design more aligned with desktop site*/
.header-container {
.header-container {
border-bottom: 7px solid #3a928c;
border-bottom: 6px solid #3a928c!important;
width: calc(100% - 32px)!important;
z-index: 1!important;
position: fixed!important;
background-color: #f4f8f9!important;
}

.banner-container {
margin-top: 60px;
}
}

Latest revision as of 19:07, 29 October 2023

/* All CSS here will be loaded for users of the mobile site */

/*
2023-10-10
Add class for blurry text (could be useful for spoilers)
*/
.ht {
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 2023-10-10 Make the design more aligned with desktop site*/
.header-container {
    border-bottom: 6px solid #3a928c!important;
    width: calc(100% - 32px)!important;
    z-index: 1!important;
    position: fixed!important;
    background-color: #f4f8f9!important;
}

.banner-container {
    margin-top: 60px;
}