support.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .support-banner-wrapper {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. right: 0;
  6. margin: 1rem;
  7. }
  8. .support-banner {
  9. color: #fff;
  10. background-color: #000;
  11. box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  12. border-radius: 0.5rem;
  13. padding: 0.5rem 1rem;
  14. margin: 0 auto;
  15. width: 100%;
  16. justify-content: space-between;
  17. -webkit-box-pack: justify;
  18. align-items: center;
  19. -webkit-box-align: center;
  20. display: flex;
  21. flex-wrap: wrap;
  22. flex-direction: row;
  23. -webkit-box-orient: horizontal;
  24. -webkit-box-direction: normal;
  25. z-index: 100;
  26. }
  27. @media screen and (min-width: 1200px) {
  28. .support-banner {
  29. max-width: 1192px;
  30. }
  31. }
  32. .support-banner-left {
  33. width: 0;
  34. margin: 0;
  35. flex: 1 1 0%;
  36. -webkit-box-flex: 1;
  37. }
  38. .support-banner-right {
  39. display: flex;
  40. flex-shrink: 0;
  41. width: auto;
  42. margin-top: 0;
  43. order: 2;
  44. -webkit-box-ordinal-group: 3;
  45. justify-content: space-between;
  46. -webkit-box-pack: justify;
  47. align-items: center;
  48. -webkit-box-align: center;
  49. }
  50. .support-banner-close {
  51. width: 1.5rem;
  52. margin: 0 0 0 0.5rem;
  53. font-size: .875rem;
  54. height: 1.5rem;
  55. border: none;
  56. border-radius: 9999px;
  57. padding: 0;
  58. line-height: inherit;
  59. color: inherit;
  60. cursor: pointer;
  61. background-color: transparent;
  62. background-image: none;
  63. -webkit-appearance: button;
  64. overflow: visible;
  65. text-transform: none;
  66. display: flex;
  67. justify-content: center;
  68. -webkit-box-pack: center;
  69. align-items: center;
  70. -webkit-box-align: center;
  71. order: 3;
  72. -webkit-box-ordinal-group: 4;
  73. }
  74. .hidden {
  75. display: none;
  76. }
  77. @media (min-width: 700px) {
  78. .sm\:inline-block {
  79. display: inline-block;
  80. }
  81. }
  82. @media (min-width: 1060px) {
  83. .lg\:hidden {
  84. display: none;
  85. }
  86. .lg\:inline-block {
  87. display: inline-block;
  88. }
  89. }