Jump to: navigation, search

Difference between revisions of "MediaWiki:Mobile.css"


Line 16: Line 16:
 
div.product {
 
div.product {
 
     line-height:30px;
 
     line-height:30px;
     background-color:#eeeeee;
+
     background-color: lightgrey;
 
     height:80px;
 
     height:80px;
 
     vertical-align: center;
 
     vertical-align: center;
Line 23: Line 23:
 
     padding:5px;  
 
     padding:5px;  
 
     text-align: center;
 
     text-align: center;
     border: 1px solid grey;
+
     border: 1px solid #eeeeee;
 
}
 
}
  

Revision as of 11:25, 5 May 2015

/* CSS placed here will affect users of the mobile site */
 
/********************************************/
/* COMMON MOBILE CSS */
table, tbody, tr, th, td {
   border: none;
   /*display: block;*/
} 
 
/* COMMON MOBILE CSS */
/********************************************/
 
/********************************************/
/* MAIN PAGE */
 
div.product {
    line-height:30px;
    background-color: lightgrey;
    height:80px;
    vertical-align: center;
    width:100%;
    float:left;
    padding:5px; 
    text-align: center;
    border: 1px solid #eeeeee;
}
 
div.beginnersGuide {
    line-height:30px;
    background-color:#efefef;
    width:100%;
    float:left;
    padding:5px;
}
 
/* Link formatting */
span.mp-beginnersLink a {
   font-family: inherit;
   font-size: 1em; /* IE doesn't like inherit here */
   font-weight: bold;
   text-decoration:none; 
   color: #272e65;
}
 
span.mp-productsLink a {
   font-family: inherit;
   font-size: 1.5em; /* IE doesn't like inherit here */
   font-weight: bold;
   font-style: italic;
   text-decoration:none; 
   color: #272e65;
}
 
/* News & Announcement table */
table.newsTable
{
   width:100%;
   border:none;
}
 
table.newsTable tr
{
   border:none;
}
 
td.newsDate {
   font-weight: bold;
   width:100px;
   border: none;
}
 
td.newsIcon {
   width:30px
   border: none;
}
 
.newsList ul {
   list-style-image: url('images/f/fd/IC_MainPage-20.png');
   //list-style-type: square;
}
/* News & Announcement table */
 
/* MAIN PAGE */
/********************************************/
 
/********************************************/
/* FEATURE TABLE */
 
td.featureName {
   font-weight: bold;
   text-align: left;
}
.featureList ul {
   list-style-image: url('images/f/fd/IC_MainPage-20.png');
   //list-style-type: square;
}
 
/* FEATURE TABLE*/
/********************************************/