42 lines
806 B
CSS
42 lines
806 B
CSS
body {
|
|
width: 240px ; /* nokia 176px screen */
|
|
/* border: thick solid red /* just to see the 'screen' limits */
|
|
font-size: 10px;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
*:not(#ImPoSsIbLeId):not(#ImPoSsIbLeId):not(#ImPoSsIbLeId):not(body):not(img) {
|
|
/* the negated ID selectors above are here just to increase specificity */
|
|
width: auto ! important ;
|
|
}
|
|
|
|
*:not(#ImPoSsIbLeId):not(#ImPoSsIbLeId):not(#ImPoSsIbLeId) {
|
|
/* the negated ID selectors above are here just to increase specificity */
|
|
position: static;
|
|
float: none;
|
|
text-align: left;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
top: auto;
|
|
left: auto;
|
|
}
|
|
|
|
table,tbody,thead,tfoot,tr,td,th,col,colgroup {
|
|
display: block;
|
|
}
|
|
|
|
iframe {
|
|
display : none;
|
|
}
|
|
|
|
li {
|
|
list-style-position: inside;
|
|
}
|
|
|
|
img[width="1"] {
|
|
display: none
|
|
}
|
|
|
|
/* img {
|
|
display: none
|
|
}*/
|