style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .widget_eu_cookie_law_widget {
  2. border: none;
  3. bottom: 1em;
  4. display: none;
  5. left: 1em;
  6. margin: 0;
  7. padding: 0;
  8. position: fixed;
  9. right: 1em;
  10. width: auto;
  11. z-index: 50001;
  12. }
  13. .widget_eu_cookie_law_widget.widget.top {
  14. bottom: auto;
  15. top: 1em;
  16. }
  17. .admin-bar .widget_eu_cookie_law_widget.widget.top {
  18. top: 3em;
  19. }
  20. #eu-cookie-law {
  21. background-color: #fff;
  22. border: 1px solid #dedede;
  23. color: #2e4467;
  24. font-size: 12px;
  25. line-height: 1.5;
  26. overflow: hidden;
  27. padding: 6px 6px 6px 15px;
  28. position: relative;
  29. }
  30. #eu-cookie-law a,
  31. #eu-cookie-law a:active,
  32. #eu-cookie-law a:visited {
  33. color: inherit;
  34. cursor: inherit;
  35. text-decoration: underline;
  36. }
  37. #eu-cookie-law a:hover {
  38. cursor: pointer;
  39. text-decoration: none;
  40. }
  41. #eu-cookie-law.negative {
  42. background-color: #000;
  43. border: none;
  44. color: #fff;
  45. }
  46. /**
  47. * Using a highly-specific rule to make sure that certain form styles
  48. * will be reset
  49. */
  50. #eu-cookie-law form {
  51. margin-bottom: 0;
  52. }
  53. /**
  54. * Using a highly-specific rule to make sure that all button styles
  55. * will be reset
  56. */
  57. #eu-cookie-law input,
  58. #eu-cookie-law input:hover,
  59. #eu-cookie-law input:focus {
  60. background: #f3f3f3;
  61. border: 1px solid #dedede;
  62. border-radius: 4px;
  63. -moz-border-radius: 3px;
  64. -webkit-border-radius: 3px;
  65. color: #2e4453;
  66. cursor: pointer;
  67. display: inline;
  68. float: right;
  69. font-family: inherit;
  70. font-size: 14px;
  71. font-weight: inherit;
  72. line-height: inherit;
  73. margin: 0 0 0 5%;
  74. padding: 8px 12px;
  75. position: static;
  76. text-transform: none;
  77. }
  78. #eu-cookie-law.negative input,
  79. #eu-cookie-law.negative input:hover,
  80. #eu-cookie-law.negative input:focus {
  81. background: #282828;
  82. border-color: #535353;
  83. color: #fff;
  84. }
  85. @media ( max-width: 600px ) {
  86. #eu-cookie-law {
  87. padding-bottom: 55px;
  88. }
  89. #eu-cookie-law input.accept {
  90. bottom: 8px;
  91. position: absolute;
  92. right: 8px;
  93. }
  94. }