tarteaucitron.css 11 KB

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