tarteaucitron.css 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. /***
  2. * Responsive layout for the control panel
  3. */
  4. @media screen and (max-width:479px) {
  5. #tarteaucitron #tarteaucitronInfo {
  6. background-image: none;
  7. font-size: 16px !important;
  8. padding-right: 0;
  9. text-align: center;
  10. }
  11. #tarteaucitron .tarteaucitronLine .tarteaucitronName {
  12. width: 90% !important;
  13. }
  14. #tarteaucitron .tarteaucitronLine .tarteaucitronAsk {
  15. float: left !important;
  16. margin: 10px 15px 5px;
  17. }
  18. }
  19. @media screen and (max-width:767px) {
  20. #tarteaucitron {
  21. border: 0 !important;
  22. bottom: 0 !important;
  23. height: 100% !important;
  24. left: 0 !important;
  25. margin: 0 !important;
  26. max-height: 100% !important;
  27. max-width: 100% !important;
  28. top: 0 !important;
  29. width: 100% !important;
  30. }
  31. #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
  32. text-align: left !important;
  33. }
  34. }
  35. @media screen and (min-width:768px) and (max-width:991px) {
  36. #tarteaucitron {
  37. border: 0 !important;
  38. left: 0 !important;
  39. margin: 0 5% !important;
  40. max-height: 80% !important;
  41. width: 90% !important;
  42. }
  43. }
  44. /***
  45. * Common value
  46. */
  47. #tarteaucitron * {
  48. zoom: 1;
  49. }
  50. #tarteaucitron .clear {
  51. clear: both;
  52. }
  53. #tarteaucitron a {
  54. color: rgb(66, 66, 66);
  55. font-size: 11px;
  56. font-weight: 700;
  57. text-decoration: none;
  58. }
  59. #tarteaucitronAlertBig a, #tarteaucitronAlertSmall a {
  60. color: #fff;
  61. }
  62. #tarteaucitron b {
  63. font-size: 22px;
  64. font-weight: 500;
  65. }
  66. /***
  67. * Root div added just before </body>
  68. */
  69. #tarteaucitronRoot {
  70. left: 0;
  71. position: absolute;
  72. right: 0;
  73. top: 0;
  74. width: 100%;
  75. }
  76. #tarteaucitronRoot * {
  77. box-sizing: initial;
  78. color: #333;
  79. font-family: sans-serif !important;
  80. font-size: 14px;
  81. line-height: normal;
  82. vertical-align: initial;
  83. }
  84. /***
  85. * Control panel
  86. */
  87. #tarteaucitronBack {
  88. background: #fff;
  89. display: none;
  90. height: 100%;
  91. left: 0;
  92. opacity: 0.7;
  93. position: fixed;
  94. top: 0;
  95. width: 100%;
  96. z-index: 2147483646;
  97. }
  98. #tarteaucitron {
  99. background: #fff;
  100. box-shadow: 0 0 15px #4a4a4a;
  101. display: none;
  102. left: 50%;
  103. margin: 0 auto 0 -430px;
  104. max-height: 80%;
  105. overflow: auto;
  106. padding: 0;
  107. position: fixed;
  108. top: 10%;
  109. width: 860px;
  110. z-index: 2147483647;
  111. }
  112. #tarteaucitron #tarteaucitronClosePanel {
  113. background: #333333;
  114. color: #fff;
  115. cursor: pointer;
  116. font-size: 12px;
  117. font-weight: 700;
  118. text-decoration: none;
  119. padding: 4px 0;
  120. position: absolute;
  121. right: 0;
  122. text-align: center;
  123. width: 70px;
  124. }
  125. #tarteaucitron #tarteaucitronInfo {
  126. background: rgba(51, 51, 51, 0.1);
  127. border-bottom: 4px solid #fff;
  128. clear: both;
  129. color: #333;
  130. font-size: 24px;
  131. padding: 20px 20px 18px 20px;
  132. text-align: center;
  133. }
  134. #tarteaucitron #tarteaucitronDisclaimer {
  135. color: #555;
  136. font-size: 12px;
  137. margin: 15px auto 0;
  138. width: 80%;
  139. }
  140. #tarteaucitron #tarteaucitronServices {
  141. background: #fff;
  142. border-bottom: 4px solid #fff;
  143. min-height: 250px;
  144. }
  145. #tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  146. display: none;
  147. }
  148. #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
  149. background: rgba(51, 51, 51, 0.2);
  150. color: #333;
  151. font-size: 20px;
  152. padding: 18px 22px;
  153. text-align: center;
  154. }
  155. #tarteaucitron #tarteaucitronServices .tarteaucitronTitle .tarteaucitronDetails {
  156. color: #555;
  157. font-size: 12px;
  158. }
  159. #tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover {
  160. background: #f5f5f5;
  161. }
  162. #tarteaucitron #tarteaucitronServices .tarteaucitronLine {
  163. background: #fafafa;
  164. border-left: 5px solid #f5f5f5;
  165. margin: 1px 0;
  166. overflow: hidden;
  167. padding: 15px 5px;
  168. }
  169. #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  170. background: #444;
  171. border: 0;
  172. margin-bottom: 5px;
  173. }
  174. #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover {
  175. background: #444;
  176. }
  177. #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
  178. margin-top: 2px;
  179. }
  180. #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName b {
  181. color: #fff;
  182. }
  183. #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk {
  184. margin-top: 0px !important;
  185. }
  186. #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName {
  187. display: inline-block;
  188. float: left;
  189. margin-left: 15px;
  190. text-align: left;
  191. width: 50%;
  192. }
  193. #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover {
  194. text-decoration: underline;
  195. }
  196. #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
  197. display: inline-block;
  198. float: right;
  199. margin: 7px 15px 0;
  200. text-align: right;
  201. }
  202. #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,
  203. #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,
  204. .tac_activate .tarteaucitronAllow {
  205. background: gray;
  206. border-radius: 4px;
  207. color: #fff;
  208. cursor: pointer;
  209. display: inline-block;
  210. padding: 6px 10px;
  211. text-align: center;
  212. text-decoration: none;
  213. width: auto;
  214. }
  215. #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies {
  216. color: #333;
  217. font-size: 12px;
  218. }
  219. #tarteaucitron #tarteaucitronFooter {
  220. background: rgba(51, 51, 51, 0.1);
  221. border-top: 1px solid #eee;
  222. margin: 20px auto 0px;
  223. padding: 15px 0 15px;
  224. text-align: center;
  225. }
  226. #tarteaucitron #tarteaucitronFooter a {
  227. color: #666;
  228. font-style: normal;
  229. text-decoration: underline;
  230. }
  231. /***
  232. * Big alert
  233. */
  234. .tarteaucitronAlertBigTop {
  235. top: 0;
  236. }
  237. .tarteaucitronAlertBigBottom {
  238. bottom: 0;
  239. }
  240. #tarteaucitronAlertBig {
  241. background: #333;
  242. color: #fff;
  243. display: none;
  244. font-size: 15px !important;
  245. left: 0;
  246. padding: 5px 5%;
  247. position: fixed;
  248. text-align: center;
  249. width: 90%;
  250. box-sizing: content-box;
  251. z-index: 2147483645;
  252. }
  253. #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
  254. #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert b {
  255. font: 15px verdana;
  256. color: #fff;
  257. }
  258. #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert b {
  259. font-weight: 700;
  260. }
  261. #tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitronAlertBig #tarteaucitronPersonalize {
  262. background: #008300;
  263. color: #fff;
  264. cursor: pointer;
  265. display: inline-block;
  266. font-size: 16px;
  267. padding: 5px 10px;
  268. text-decoration: none;
  269. margin-left: 7px;
  270. }
  271. #tarteaucitronAlertBig #tarteaucitronCloseAlert {
  272. background: #fff;
  273. color: #333;
  274. font-size: 13px;
  275. margin-left: 7px;
  276. padding: 4px 10px;
  277. }
  278. /***
  279. * Small alert
  280. */
  281. #tarteaucitronAlertSmall {
  282. background: #333;
  283. bottom: 0;
  284. cursor: pointer;
  285. display: none;
  286. padding: 0;
  287. position: fixed;
  288. right: 0;
  289. text-align: center;
  290. width: auto;
  291. z-index: 2147483645;
  292. }
  293. #tarteaucitronAlertSmall #tarteaucitronManager {
  294. color: #fff;
  295. display: inline-block;
  296. font-size: 11px !important;
  297. padding: 10px 10px 5px 10px;
  298. }
  299. #tarteaucitronAlertSmall #tarteaucitronManager:hover {
  300. background: rgba(255, 255, 255, 0.05);
  301. }
  302. #tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot {
  303. background-color: gray;
  304. border-radius: 5px;
  305. display: inline-block;
  306. height: 8px;
  307. margin-top: 5px;
  308. overflow: hidden;
  309. width: 100%;
  310. }
  311. #tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,
  312. #tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow,
  313. #tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  314. display: block;
  315. float: left;
  316. height: 100%;
  317. width: 0%;
  318. }
  319. #tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
  320. background-color: #1B870B;
  321. }
  322. #tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
  323. background-color: #FBDA26;
  324. }
  325. #tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  326. background-color: #9C1A1A;
  327. }
  328. #tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  329. background: rgba(255, 255, 255, 0.2);
  330. color: #fff;
  331. display: inline-block;
  332. font-size: 34px;
  333. padding: 5px 10px 0;
  334. }
  335. #tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover {
  336. background: rgba(255, 255, 255, 0.3);
  337. }
  338. #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  339. background: #333;
  340. display: none;
  341. max-width: 500px;
  342. position: fixed;
  343. right: 0;
  344. width: 100%;
  345. }
  346. #tarteaucitronAlertSmall #tarteaucitronCookiesList {
  347. background: rgba(255, 255, 255, 0.2);
  348. color: #fff;
  349. font-size: 11px;
  350. padding: 12px;
  351. text-align: left;
  352. }
  353. #tarteaucitronAlertSmall #tarteaucitronCookiesList b {
  354. color: #fff;
  355. }
  356. #tarteaucitronAlertSmall #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
  357. padding: 4px;
  358. word-wrap: break-word;
  359. }
  360. #tarteaucitronAlertSmall #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover {
  361. background: rgba(255, 255, 255, 0.1);
  362. }
  363. #tarteaucitronAlertSmall #tarteaucitronCookiesList .tarteaucitronCookiesListLeft {
  364. display: inline-block;
  365. width: 40%;
  366. }
  367. #tarteaucitronAlertSmall #tarteaucitronCookiesList .tarteaucitronCookiesListRight {
  368. color: #fff;
  369. display: inline-block;
  370. margin-left: 10%;
  371. vertical-align: top;
  372. width: 40%;
  373. }
  374. /***
  375. * Fallback activate link
  376. */
  377. .tac_activate {
  378. background: #333;
  379. color: #fff;
  380. display: table;
  381. font-size: 12px;
  382. height: 100%;
  383. line-height: initial;
  384. margin: auto;
  385. text-align: center;
  386. width: 100%;
  387. }
  388. .tac_float {
  389. display: table-cell;
  390. text-align: center;
  391. vertical-align: middle;
  392. }
  393. .tac_activate .tac_float b {
  394. color: #fff;
  395. }
  396. .tac_activate .tac_float .tarteaucitronAllow {
  397. background-color: #1B870B;
  398. display: inline-block;
  399. }
  400. /***
  401. * CSS for services
  402. */
  403. ins.ferank-publicite, ins.adsbygoogle {
  404. text-decoration: none;
  405. }
  406. div.amazon_product {
  407. height:240px;
  408. width:120px;
  409. }