You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_chrome-extension-banner.scss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .chrome-extension-banner {
  2. position: fixed;
  3. width: 406px;
  4. height: $chromeExtensionBannerHeight;
  5. background: #FFF;
  6. box-shadow: 0px 2px 48px rgba(0, 0, 0, 0.25);
  7. border-radius: 4px;
  8. z-index: 1000;
  9. float: right;
  10. display: flex;
  11. flex-direction: column;
  12. padding: 20px 20px;
  13. top: $chromeExtensionBannerTop;
  14. right: $chromeExtensionBannerRight;
  15. &__pos_in_meeting {
  16. top: $chromeExtensionBannerTopInMeeting;
  17. right: $chromeExtensionBannerRightInMeeeting;
  18. }
  19. &__container {
  20. display: flex;
  21. justify-content: space-between;
  22. margin-bottom: 16px;
  23. }
  24. &__button-container {
  25. display: flex;
  26. }
  27. &__checkbox-container {
  28. display: $chromeExtensionBannerDontShowAgainDisplay;
  29. margin-left: 45px;
  30. margin-top: 16px;
  31. }
  32. &__checkbox-label {
  33. font-size: 14px;
  34. line-height: 18px;
  35. display: flex;
  36. align-items: center;
  37. letter-spacing: -0.006em;
  38. color: #1C2025;
  39. }
  40. &__icon-container {
  41. display: flex;
  42. background: url('../images/chromeLogo.svg');
  43. background-repeat: no-repeat;
  44. width: 27px;
  45. height: 27px;
  46. }
  47. &__text-container {
  48. font-size: 14px;
  49. line-height: 18px;
  50. display: flex;
  51. align-items: center;
  52. letter-spacing: -0.006em;
  53. color: #151531;
  54. width: 329px;
  55. }
  56. &__close-container {
  57. display: flex;
  58. width: 12px;
  59. height: 12px;
  60. }
  61. &__gray-close-icon {
  62. fill: #5E6D7A;
  63. width: 12px;
  64. height: 12px;
  65. cursor: pointer;
  66. }
  67. &__button-open-url {
  68. background: #0A57EB;
  69. border-radius: 24px;
  70. margin-left: 45px;
  71. width: 236px;
  72. height: 40px;
  73. cursor: pointer;
  74. }
  75. &__button-text {
  76. font-weight: 600;
  77. font-size: 14px;
  78. line-height: 40px;
  79. text-align: center;
  80. letter-spacing: -0.006em;
  81. color: #FFFFFF;
  82. }
  83. }