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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. > .aui-progress-indicator-value {
  56. border-radius: 0px;
  57. }
  58. }
  59. }
  60. &__title {
  61. font-size: 18px;
  62. font-weight: 600;
  63. }
  64. &__container {
  65. align-self: center;
  66. }
  67. &__text {
  68. margin-top: 10px;
  69. font-size: 14px;
  70. font-weight: 600;
  71. }
  72. &__icon {
  73. font-size: 50px;
  74. align-self: center;
  75. color: $inlayIconColor;
  76. opacity: 0.6;
  77. }
  78. &__icon-container {
  79. text-align: center;
  80. display: flex;
  81. justify-content: center;
  82. position: absolute;
  83. width: 100%;
  84. height: 100%;
  85. top: 0px;
  86. }
  87. &__avatar-container {
  88. position: relative;
  89. > img {
  90. height: 100%;
  91. }
  92. }
  93. &__icon-background {
  94. background: $inlayIconBg;
  95. opacity: 0.6;
  96. position: absolute;
  97. width: 100%;
  98. height: 100%;
  99. top: 0px;
  100. }
  101. }
  102. }