policy.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. #toast {
  2. background: #555;
  3. position: fixed;
  4. bottom: 0;
  5. border-top: none;
  6. left: 0;
  7. right: 0;
  8. z-index: 9999;
  9. opacity: 0.9;
  10. }
  11. #toast div,
  12. #toast span,
  13. #toast applet,
  14. #toast object,
  15. #toast iframe,
  16. #toast h1,
  17. #toast h2,
  18. #toast h3,
  19. #toast h4,
  20. #toast h5,
  21. #toast h6,
  22. #toast p,
  23. #toast blockquote,
  24. #toast pre,
  25. #toast a,
  26. #toast abbr,
  27. #toast acronym,
  28. #toast address,
  29. #toast big,
  30. #toast cite,
  31. #toast code,
  32. #toast del,
  33. #toast dfn,
  34. #toast em,
  35. #toast img,
  36. #toast ins,
  37. #toast kbd,
  38. #toast q,
  39. #toast s,
  40. #toast samp,
  41. #toast small,
  42. #toast strike,
  43. #toast strong,
  44. #toast sub,
  45. #toast sup,
  46. #toast tt,
  47. #toast var,
  48. #toast b,
  49. #toast u,
  50. #toast i,
  51. #toast center,
  52. #toast dl,
  53. #toast dt,
  54. #toast dd,
  55. #toast ol,
  56. #toast ul,
  57. #toast li,
  58. #toast fieldset,
  59. #toast form,
  60. #toast label,
  61. #toast legend,
  62. #toast table,
  63. #toast caption,
  64. #toast tbody,
  65. #toast tfoot,
  66. #toast thead,
  67. #toast tr,
  68. #toast th,
  69. #toast td,
  70. #toast article,
  71. #toast aside,
  72. #toast canvas,
  73. #toast details,
  74. #toast embed,
  75. #toast figure,
  76. #toast figcaption,
  77. #toast footer,
  78. #toast header,
  79. #toast hgroup,
  80. #toast menu,
  81. #toast nav,
  82. #toast output,
  83. #toast ruby,
  84. #toast section,
  85. #toast summary,
  86. #toast time,
  87. #toast mark,
  88. #toast audio,
  89. #toast video {
  90. margin: 0;
  91. padding: 0;
  92. border: 0;
  93. font-size: 100%;
  94. font: inherit;
  95. vertical-align: baseline;
  96. }
  97. #toast div#toastTable {
  98. border: 0;
  99. background: #555;
  100. margin-left: 10px;
  101. margin-right: 10px;
  102. display: table;
  103. width: 98%;
  104. }
  105. #toast div#toastButtonColumn,
  106. #toast div#toastTextColumn {
  107. display: table-cell;
  108. vertical-align: middle;
  109. text-align: right;
  110. width: 10%;
  111. }
  112. #toast div#toastButtonColumn {
  113. text-align: right;
  114. }
  115. #toast div#toastTextColumn {
  116. width: 90%;
  117. text-align: left;
  118. vertical-align: middle;
  119. }
  120. #toast .textToast {
  121. font-weight: normal;
  122. font-size: 14px;
  123. display: inline-block;
  124. color: #ffffff;
  125. padding: 0 1em 0 0;
  126. line-height: 140%;
  127. letter-spacing: 0.02em;
  128. }
  129. #toast .textToast a {
  130. color: #ffffff;
  131. text-decoration: underline;
  132. }
  133. #toast .textToast a:hover {
  134. color: #ffffff;
  135. text-decoration: none;
  136. }
  137. #toast button:focus {
  138. outline: 0;
  139. }
  140. #toast button#buttonToast.btn.btn-default {
  141. font-weight: bold;
  142. cursor: pointer;
  143. font-size: 14px;
  144. border: 0 none;
  145. background: #ffffff;
  146. color: #555;
  147. min-height: auto;
  148. -webkit-border-radius: 0;
  149. -moz-border-radius: 0;
  150. border-radius: 0;
  151. padding: 4px 12px;
  152. margin: 1em 0;
  153. letter-spacing: 0.02em;
  154. }
  155. @media (max-width: 768px) {
  156. #toast div#toastTable {
  157. display: block;
  158. }
  159. #toast div#toastButtonColumn,
  160. #toast div#toastTextColumn {
  161. display: inline-block;
  162. text-align: center;
  163. width: 100%;
  164. }
  165. #toast div#toastTextColumn {
  166. display: block;
  167. }
  168. }
  169. div.ui-loader {
  170. height: 0;
  171. width: 0;
  172. visibility: hidden;
  173. }
  174. .h-70
  175. {
  176. height: 70px !important;
  177. -webkit-line-clamp: 3!important;
  178. }