Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.71 KB | None | 0 0
  1. @media screen and (device-width: 768px),
  2. only screen and (-webkit-min-device-pixel-ratio: 2)
  3. {
  4.         /* Styles for the iPad/Mobile */
  5.         body {-webkit-text-size-adjust: none;}     
  6.  
  7.         /* older versions of the iPad (pre v4 of iOS) do not support @font-face, so don't use BebasNeue font */
  8.  
  9.         #pageContainer {
  10.             font:12px arial,helvetica,sans-serif;  
  11.         }
  12.         /* This resizes much of the text so it fits on the iPad/Mobile devices. */
  13.         #pageContainer,
  14.         .page0 .pageContentBlock h1,
  15.         .page0 .pageContentBlock h2,
  16.         .ddlist > a,
  17.         .ddlist ul li a,
  18.         .blMenu li,
  19.         .blMenu li li,
  20.         .blMenu li li span,
  21.         .pages .smaller,
  22.         .radioGroup > span,
  23.         .pageContentBlock h2,
  24.         .pageContentBlock h3,
  25.         .qBlock p,
  26.         .qBlock label,
  27.         .page0 .pageContentBlock h2 span,
  28.         .page0 .pageContentBlock a,
  29.         a.navigateBtn,
  30.         a.formSubmit,
  31.         .resultsShelf a.PrintResults,
  32.         .prodShelf .discMsg a,.prodShelf a,
  33.         .bottomResults a,
  34.         .qBlock .chkBox label,
  35.         .page5 .qBlock .single_answer_special > span label {font-size: 90%;}
  36.         .prodShelf .discMsg a.DiscCloseBtn,
  37.         .prodShelf a.additionalProds,
  38.         .prodShelf a.additionalProdsBack {font-size: 70%;}
  39.         .popup h3 {font-size: 100%;}
  40.         .prodShelf h2 {margin-top: 75px;}
  41.         .page0 .pageContentBlock a {width: 47px;}
  42.         .pageContentBlock h2,
  43.         .pageContentBlock h3{line-height: 16px;padding-top: 8px;}
  44.         .page1 .radioGroup > span {
  45.             margin: 16px 0 43px -26px;
  46.             background: url(../images/PAiPadButton.png) 8px center no-repeat;
  47.             line-height: 31px;
  48.             height: 31px;
  49.             position: relative;
  50.             z-index: 10;
  51.         }
  52.         .page1 .radioGroup > span label {
  53.             display: block;
  54.             height: 100%;
  55.             width: 80%;
  56.             margin-left: -36px;
  57.             padding-left: 42px;
  58.         }
  59.         .ui-slider .ui-slider-handle {
  60.             background: url(../images/PAiPadButtonSelected.png) -1px 0 no-repeat;
  61.             line-height: 31px;
  62.             height: 31px;  
  63.             z-index: 20;       
  64.         }
  65.         .page2 .radioGroup > span {
  66.             margin: 16px 0 43px -26px;
  67.             background: url(../images/PAiPadButton.png) 8px center no-repeat;
  68.             line-height: 31px;
  69.             height: 31px;
  70.             position: relative;
  71.             z-index: 10;
  72.         }
  73.         .page2 .radioGroup > span label {
  74.             display: block;
  75.             height: 100%;
  76.             width: 80%;
  77.             margin-left: -36px;
  78.             padding-left: 42px;
  79.         }
  80.         .page2 .single_answer_slider + .single_answer_slider .radioGroup > span {
  81.             margin: 16px 0 13px -26px;
  82.             background: url(../images/PAiPadButton.png) 8px center no-repeat;
  83.             line-height: 31px;
  84.             position: relative;
  85.             z-index: 10;
  86.         }
  87.         .page2 .single_answer_slider + .single_answer_slider .radioGroup > span label {
  88.             width: 100%;
  89.         }
  90.         .qBlock .chkBox label{font-size: 80%;}
  91.         .page4 .qBlock .chkBox label{min-width: 178px;}
  92.         .resultsShelf h1 {font-size: 25px; margin: 10px 0 10px 31px;}
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement