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.

_inlay.scss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .inlay {
  2. margin-top: 14%;
  3. @include border-radius(4px);
  4. padding: 40px 38px 44px;
  5. color: #fff;
  6. background: $inlayColorBg;
  7. text-align: center;
  8. &__title {
  9. margin: 17px 0;
  10. padding-bottom: 17px;
  11. color: $popoverFontColor;
  12. font-size: 21px;
  13. letter-spacing: 0.3px;
  14. border-bottom: 1px solid $inlayBorderColor;
  15. }
  16. &__text {
  17. color: $popoverFontColor;
  18. display: block;
  19. margin-top: 22px;
  20. font-size: 16px;
  21. }
  22. &__icon {
  23. margin: 0 10px;
  24. font-size: 50px;
  25. }
  26. &-filmstrip-only {
  27. background-color: $inlayFilmstripOnlyBg;
  28. color: $inlayFilmstripOnlyColor;
  29. margin-left: 20px;
  30. margin-right: 20px;
  31. margin-top: 20px;
  32. bottom: 30px;
  33. position: absolute;
  34. display: flex;
  35. max-height: 120px;
  36. height: 80%;
  37. right: 0px;
  38. border-radius: 4px;
  39. overflow: hidden;
  40. &__content {
  41. padding: 20px;
  42. display: flex;
  43. justify-content: center;
  44. position: relative;
  45. > .button-control {
  46. align-self: center;
  47. }
  48. > #reloadProgressBar {
  49. position: absolute;
  50. left: 0px;
  51. bottom: 0px;
  52. margin-bottom: 0px;
  53. width: 100%;
  54. border-radius: 0px;
  55. }
  56. }
  57. &__title {
  58. font-size: 18px;
  59. font-weight: 600;
  60. }
  61. &__container {
  62. align-self: center;
  63. }
  64. &__text {
  65. margin-top: 10px;
  66. font-size: 14px;
  67. font-weight: 600;
  68. }
  69. &__icon {
  70. font-size: 50px;
  71. align-self: center;
  72. color: $inlayIconColor;
  73. opacity: 0.6;
  74. }
  75. &__icon-container {
  76. text-align: center;
  77. display: flex;
  78. justify-content: center;
  79. position: absolute;
  80. width: 100%;
  81. height: 100%;
  82. top: 0px;
  83. }
  84. &__avatar-container {
  85. height: 100%;
  86. position: relative;
  87. > img {
  88. height: 100%;
  89. }
  90. }
  91. &__icon-background {
  92. background: $inlayIconBg;
  93. opacity: 0.6;
  94. position: absolute;
  95. width: 100%;
  96. height: 100%;
  97. top: 0px;
  98. }
  99. }
  100. }